12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Dynamic;
- using System.Text;
- namespace VeloeKemonoPartyApp.Data
- {
- public class Creator
- {
- public int favorited { get; set; }
- public string id { get; set; }
- public double indexed { get; set; }
- public string name { get; set; }
- public string service { get; set; }
- public double updated { get; set; }
- public string Icon => $"https://kemono.party/icons/{service}/{id}";
-
- }
- }
|