| 1234567891011121314151617 |
- namespace molilian.core
- {
- public class ReduPoolDTO
- {
- public int id { get; set; }
- public string name { get; set; } = string.Empty;
- public string description { get; set; } = string.Empty;
- public string base_url { get; set; } = string.Empty;
- public string app_key { get; set; } = string.Empty;
- public string app_secret { get; set; } = string.Empty;
- public DateTime create_time { get; set; }
- public DateTime last_time { get; set; }
- public bool status { get; set; }
- }
- }
|