AccountInfoComponent.cs 306 B

123456789101112131415
  1. namespace ET.Client
  2. {
  3. /**
  4. * 账号信息
  5. */
  6. [ComponentOf(typeof(Scene))]
  7. public class AccountInfoComponent : Entity, IAwake, IDestroy
  8. {
  9. /** 登陆token **/
  10. public string Token { get; set; }
  11. /** 账号id **/
  12. public long UserId { get; set; }
  13. }
  14. }