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