mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 12:19:54 +01:00
15 lines
373 B
C#
15 lines
373 B
C#
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; }
|
|
}
|