You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
364 B
13 lines
364 B
3 years ago
|
using System.Collections.Generic;
|
||
|
using MongoDB.Bson.Serialization.Attributes;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public class Cabin: Entity,IAwake,IUpdate, IDestroy,ISerializeToEntity
|
||
|
{
|
||
|
public long PeopleId;
|
||
|
public List<long> FarmlandIds = new List<long>();
|
||
|
public int ResidentState; //是不是有居民常驻 0表示没有,1表示有
|
||
|
|
||
|
}
|
||
|
}
|