mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-16 02:02:55 -07:00
* Localize TV and movies titles in requests * Add missing release statuses * Localize collection request * Localize TV shows in newsletter Uses TMDB instead of TVMaze for title, genres and synopsis * Localize error messages * Localize albums requests * Use current language for TV and movies requests * Remove unecessary console log
10 lines
No EOL
230 B
C#
10 lines
No EOL
230 B
C#
using Ombi.Core.Engine;
|
|
namespace Ombi.Core.Rule
|
|
{
|
|
public class RuleResult
|
|
{
|
|
public bool Success { get; set; }
|
|
public string Message { get; set; }
|
|
public ErrorCode ErrorCode { get; set; }
|
|
}
|
|
} |