You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Core/Models/Search/V2/Music/AlbumInformation.cs

20 lines
670 B

using System.Collections.Generic;
namespace Ombi.Core.Models.Search.V2.Music
{
public class AlbumInformation
{
public string Title { get; set; }
public string Id { get; set; }
public string StartYear { get; set; }
public string EndYear { get; set; }
public bool IsEnded => string.IsNullOrEmpty(EndYear);
public bool Monitored { get; set; }
public string Type { get; set; }
public string Country { get; set; }
public string Region { get; set; }
public string Disambiguation { get; set; }
public string Cover { get; set; }
public string Overview { get; set; }
}
}