This commit is contained in:
tidusjar 2020-10-11 00:06:02 +01:00
commit 0afe5de211
5 changed files with 153 additions and 60 deletions

View file

@ -0,0 +1,10 @@
using System.Collections.Generic;
namespace Ombi.Models.Identity
{
public class IdentityResult
{
public List<string> Errors { get; set; }
public bool Successful { get; set; }
}
}