| 1234567891011121314151617181920212223 |
- using System;
- using Base;
- namespace Model
- {
- public class StartConfig: Entity
- {
- public int AppId { get; set; }
- public string AppType { get; set; }
- public string ServerIP { get; set; }
- public StartConfig(): base(EntityType.Config)
- {
- }
- public object Clone()
- {
- return MongoHelper.FromJson<StartConfig>(MongoHelper.ToJson(this));
- }
- }
- }
|