blob: fe7aa40456bbb8c8a2441666cc96e52732857aa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
using System.Text.Json.Serialization;
namespace MediaBrowser.Providers.Books.ComicBookInfo.Models;
/// <summary>
/// ComicBookInfo credit.
/// </summary>
public class ComicBookInfoCredit
{
/// <summary>
/// Gets or sets the person name.
/// </summary>
[JsonPropertyName("person")]
public string? Person { get; set; }
/// <summary>
/// Gets or sets the role.
/// </summary>
[JsonPropertyName("role")]
public string? Role { get; set; }
}
|