Creator.cs 509 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Dynamic;
  4. using System.Text;
  5. namespace VeloeKemonoPartyApp.Data
  6. {
  7. public class Creator
  8. {
  9. public int favorited { get; set; }
  10. public string id { get; set; }
  11. public double indexed { get; set; }
  12. public string name { get; set; }
  13. public string service { get; set; }
  14. public double updated { get; set; }
  15. public string Icon => $"https://kemono.party/icons/{service}/{id}";
  16. }
  17. }