mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-15 01:32:55 -07:00
10 lines
No EOL
284 B
C#
10 lines
No EOL
284 B
C#
namespace Ombi.Core.Engine
|
|
{
|
|
public class RequestEngineResult
|
|
{
|
|
public bool Result { get; set; }
|
|
public string Message { get; set; }
|
|
public bool IsError => !string.IsNullOrEmpty(ErrorMessage);
|
|
public string ErrorMessage { get; set; }
|
|
}
|
|
} |