using System.Text.Json.Serialization;
namespace MediaBrowser.Providers.Books.ComicBookInfo.Models;
///
/// ComicBookInfo credit.
///
public class ComicBookInfoCredit
{
///
/// Gets or sets the person name.
///
[JsonPropertyName("person")]
public string? Person { get; set; }
///
/// Gets or sets the role.
///
[JsonPropertyName("role")]
public string? Role { get; set; }
}