DataokeDTO.cs 566 B

12345678910111213141516
  1. namespace molilian.core
  2. {
  3. public class DataokeDTO
  4. {
  5. public int id { get; set; }
  6. public string name { get; set; } = string.Empty;
  7. public string domain { get; set; } = string.Empty;
  8. public string description { get; set; } = string.Empty;
  9. public string app_key { get; set; } = string.Empty;
  10. public string app_secret { get; set; } = string.Empty;
  11. public DateTime create_time { get; set; }
  12. public DateTime last_time { get; set; }
  13. public bool status { get; set; }
  14. }
  15. }