初始化CRICS
This commit is contained in:
22
WebSite/Models/AppModels.cs
Normal file
22
WebSite/Models/AppModels.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using Domain;
|
||||
|
||||
namespace WebSite.Models
|
||||
{
|
||||
public class CurtainModel
|
||||
{
|
||||
public CurtainOpenCloseModel CurtainOpen { get; set; }
|
||||
public CurtainOpenCloseModel CurtainClose { get; set; }
|
||||
}
|
||||
|
||||
public class CurtainOpenCloseModel
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string Address { get; set; }
|
||||
public DeviceSubtype Subtype { get; set; }
|
||||
public int Status { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user