This commit is contained in:
TidusJar 2018-09-28 12:56:23 +01:00
parent 2f964f904e
commit cfd0625df4
2 changed files with 37 additions and 3 deletions

View file

@ -0,0 +1,16 @@
using Ombi.Store.Entities;
namespace Ombi.Core.Models.UI
{
public class VoteViewModel
{
public int RequestId { get; set; }
public RequestType RequestType { get; set; }
public string Image { get; set; }
public string Background { get; set; }
public int Upvotes { get; set; }
public int Downvotes { get; set; }
public string Title { get; set; }
public string Description { get; set; }
}
}