wxr
2019-12-25 3df772e4fdd553b2954e8f3f55ce7ff5905407c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
namespace Shared
{
[System.Serializable]
    public class LogicModule : Common
    {
        public LogicModule () : base ()
        {
            this.Type = DeviceType.LogicModule;
        }
 
        public byte AreaID = 0;
 
        public byte AreaSceneID = 0;
    }
}