ChannelUnitInfoComponent.cs 325 B

123456789101112131415
  1. using Common.Base;
  2. using Common.Network;
  3. using MongoDB.Bson;
  4. namespace Model
  5. {
  6. /// <summary>
  7. /// channel中保存Unit一些信息,例如帐号
  8. /// </summary>
  9. public class ChannelUnitInfoComponent: Component<AChannel>
  10. {
  11. public byte[] Account { get; set; }
  12. public ObjectId PlayerId { get; set; }
  13. }
  14. }