- namespace molilian.core
- {
- public class VeapiPoolDTO
- {
- public int id { get; set; }
- public string name { get; set; } = string.Empty;
- public string key { get; set; } = string.Empty;
- public string sessionKey { get; set; } = string.Empty;
- public DateTime create_time { get; set; }
- public DateTime last_time { get; set; }
- public bool status { get; set; }
- public string refpid { get; set; } = string.Empty;
- }
- }
|