Improved the UI !wip

This commit is contained in:
TidusJar 2018-08-23 22:16:09 +01:00
parent 83537e2a36
commit 33fdffdd0f
17 changed files with 902 additions and 575 deletions

View file

@ -0,0 +1,19 @@
using System;
namespace Ombi.Core.Models.Search
{
public class SearchAlbumViewModel
{
public string Title { get; set; }
public string ForeignAlbumId { get; set; }
public bool Monitored { get; set; }
public string AlbumType { get; set; }
public decimal Rating { get; set; }
public DateTime ReleaseDate { get; set; }
public string ArtistName { get; set; }
public string ForeignArtistId { get; set; }
public string Cover { get; set; }
public string Disk { get; set; }
}
}