using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebSite.Models { public class Temp { //{"ID":"1","RoomNumber":"1001","RoomTypeID":"2", //"XiaoDuCUID":"f8815d71ff58b0f8b8ab1bbafe57cc61","TianMaoCUID":"", //"TCLCUID":"","HuaWeiCUID":"","RokidWebhookUrl":"", //"WStarttime":"14:45","WEndtime":"14:45"} public int ID { get; set; } public string RoomNumber { get; set; } public int RoomTypeID{ get; set; } public string XiaoDuCUID{ get; set; } public string TianMaoCUID{ get; set; } public string TCLCUID{ get; set; } public string HuaWeiCUID{ get; set; } public string RokidWebhookUrl{ get; set; } public string WStarttime{ get; set; } public string WEndtime{ get; set; } } }