mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-16 11:29:52 +01:00
Register
This commit is contained in:
14
APP/DTO/WatchUser.cs
Normal file
14
APP/DTO/WatchUser.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user