StartConfig.cs 364 B

1234567891011121314151617181920212223
  1. using System;
  2. using Base;
  3. namespace Model
  4. {
  5. public class StartConfig: Entity
  6. {
  7. public int AppId { get; set; }
  8. public AppType AppType { get; set; }
  9. public string ServerIP { get; set; }
  10. public StartConfig(): base(EntityType.Config)
  11. {
  12. }
  13. public object Clone()
  14. {
  15. return MongoHelper.FromJson<StartConfig>(MongoHelper.ToJson(this));
  16. }
  17. }
  18. }