StartConfig.cs 356 B

1234567891011121314151617181920
  1. using Base;
  2. using MongoDB.Bson;
  3. using MongoDB.Bson.Serialization.Attributes;
  4. namespace Model
  5. {
  6. public class StartConfig: AConfig
  7. {
  8. public int AppId { get; set; }
  9. [BsonRepresentation(BsonType.String)]
  10. public AppType AppType { get; set; }
  11. public string ServerIP { get; set; }
  12. public StartConfig(): base(EntityType.Config)
  13. {
  14. }
  15. }
  16. }