Files
Prowlarr/src/NzbDrone.Core/Applications/LazyLibrarian/LazyLibrarianError.cs
T
2021-12-05 11:41:51 -06:00

9 lines
185 B
C#

namespace NzbDrone.Core.Applications.LazyLibrarian
{
public class LazyLibrarianError
{
public int Code { get; set; }
public string Message { get; set; }
}
}