using System.Text.Json.Serialization;
namespace MediaBrowser.Providers.Books.ComicBookInfo.Models;
///
/// ComicBookInfo format.
///
public class ComicBookInfoFormat
{
///
/// Gets or sets the app ID.
///
[JsonPropertyName("appID")]
public string? AppId { get; set; }
///
/// Gets or sets the last modified timestamp.
///
[JsonPropertyName("lastModified")]
public string? LastModified { get; set; }
///
/// Gets or sets the metadata.
///
[JsonPropertyName("ComicBookInfo/1.0")]
public ComicBookInfoMetadata? Metadata { get; set; }
}