forked from sim0n00ps/OF-DL
11 lines
216 B
C#
11 lines
216 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OF_DL.Models.Dtos.Lists;
|
|
|
|
public class UserListUserDto
|
|
{
|
|
[JsonProperty("id")] public long? Id { get; set; }
|
|
|
|
[JsonProperty("_view")] public string View { get; set; } = "";
|
|
}
|