Voting engine mostly done, adding tests for it !wip

This commit is contained in:
TidusJar 2018-09-28 10:31:50 +01:00
commit b73bdec789
4 changed files with 168 additions and 40 deletions

View file

@ -0,0 +1,10 @@
namespace Ombi.Core.Models
{
public class VoteEngineResult
{
public bool Result { get; set; }
public string Message { get; set; }
public bool IsError => !string.IsNullOrEmpty(ErrorMessage);
public string ErrorMessage { get; set; }
}
}