21 lines
478 B
C#
21 lines
478 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace CommonEntity
|
|
{
|
|
public class LingChenECO
|
|
{
|
|
public string StartTime { get; set; }
|
|
public string RelativeValue { get; set; }
|
|
public bool IsEnable { get; set; }
|
|
public string HotelCode { get; set; }
|
|
}
|
|
public class TimerECOData
|
|
{
|
|
public string Key = "HotelCode";
|
|
public List<LingChenECO> Data { get; set; }
|
|
}
|
|
}
|