StartConfig.cs 233 B

123456789101112131415
  1. namespace Model
  2. {
  3. public class StartConfig: AConfig
  4. {
  5. public int AppId { get; set; }
  6. public AppType AppType { get; set; }
  7. public string ServerIP { get; set; }
  8. public StartConfig(): base(EntityType.Config)
  9. {
  10. }
  11. }
  12. }