SessionPlayerComponent.cs 403 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ComponentOf(typeof (Session))]
  5. public class SessionPlayerComponent: Entity, IAwake, IDestroy
  6. {
  7. /** 直播间id **/
  8. public string RoomId { get; set; }
  9. /** 角色id **/
  10. public long PlayerId { get; set; }
  11. /** 主播角色信息 **/
  12. public PlayerInfo PlayerInfo { get; set; }
  13. }
  14. }