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
357 B

using System.Collections.Generic;
using MongoDB.Bson.Serialization.Attributes;
namespace ET
{
public class Cabin: Entity, IAwake,ISerializeToEntity, IDestroy
{
public long PeopleId;
public List<long> FarmlandIds = new List<long>();
public int ResidentState; //是不是有居民常驻 0表示没有,1表示有
}
}