mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 03:28:28 -07:00
10 lines
No EOL
242 B
C#
10 lines
No EOL
242 B
C#
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Ombi.Helpers
|
|
{
|
|
public class LoggingEvents
|
|
{
|
|
public static EventId ApiException => new EventId(1000);
|
|
public static EventId CacherException => new EventId(2000);
|
|
}
|
|
} |