21 lines
462 B
C#
21 lines
462 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace ViewModels.Data
|
|||
|
|
{
|
|||
|
|
public class BooliveDevice
|
|||
|
|
{
|
|||
|
|
public long? Id { get; set; }
|
|||
|
|
public string? ProductID { get; set; }
|
|||
|
|
public string? DeviceName { get; set; }
|
|||
|
|
public string? DeviceSecret { get; set; }
|
|||
|
|
}
|
|||
|
|
public class QueryData
|
|||
|
|
{
|
|||
|
|
public string? HotelCode { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|