This commit is contained in:
2022-04-19 00:05:16 +02:00
parent e7c2ae7b8d
commit d7f2348f0d
20 changed files with 924 additions and 49 deletions

14
APP/DTO/WatchUser.cs Normal file
View File

@@ -0,0 +1,14 @@
using System.Text.Json.Serialization;
namespace APP.DTO;
public class WatchUser
{
[JsonPropertyName("username")] public string Username { get; set; }
[JsonPropertyName("malId")] public int MalId { get; set; }
[JsonPropertyName("progress")] public int? Progress { get; set; }
[JsonPropertyName("updated")] public DateTimeOffset? Updated { get; set; }
}