mirror of
https://github.com/ultrasn0w/app.git
synced 2025-12-13 12:29:53 +01:00
13 lines
288 B
C#
13 lines
288 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace APP.DTO;
|
|
|
|
public class WatchExtended
|
|
{
|
|
[JsonPropertyName("anime")] public int Anime { get; set; }
|
|
|
|
[JsonPropertyName("users")] public List<User> Users { get; set; }
|
|
|
|
[JsonPropertyName("data")] public Anime Data { get; set; }
|
|
}
|