StartConfig.cs 282 B

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