Files
Web_PMSApi_Server_V1_Prod/MyQianLiMa/PMS/ConfigData.cs
2025-11-20 15:56:40 +08:00

18 lines
395 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BLWWS.PMS
{
public class ConfigData
{
public int Interval { get; set; }
public List<DuiJieInfo> DuiJieInfos { get; set; }
}
public class DuiJieInfo
{
public string zuzhi_code { get; set; } = "";
public string hotel_code { get; set; }
}
}