wxr
2020-03-05 0bdc0a135dbe31761b53f432ed34f347f0a4e36b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
namespace HDL_ON.Entity
{
    /// <summary>
    /// 卷帘
    /// </summary>
    public class RollingShutter : Curtain
    {
        public RollingShutter()
        {
            //functionType = "RollingShutter";
        }
        /// <summary>
        /// 窗帘打开的进度
        /// </summary>
        public byte progress = 0;
    }
}