PartnerEntity.cs 255 B

1234567891011
  1. namespace FL.Battle
  2. {
  3. public class PartnerEntity : Entity
  4. {
  5. public override EEntityType EntityType => EEntityType.Partner;
  6. /// <summary>
  7. /// ÃúÎÄid
  8. /// </summary>
  9. public int EpigraphId { get; set; }
  10. }
  11. }