mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 12:19:54 +01:00
11 lines
226 B
C#
11 lines
226 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace APP.DTO;
|
|
|
|
public class Watch
|
|
{
|
|
[JsonPropertyName("anime")] public int Anime { get; set; }
|
|
|
|
[JsonPropertyName("users")] public List<WatchUser> WatchUsers { get; set; }
|
|
}
|