Files
Prowlarr-Prowlarr/src/NzbDrone.Core/Notifications/Join/JoinResponseModel.cs
Christopher Heath 626d94d435 New: Join notifications
Closes #1197
2016-08-13 11:37:55 -07:00

14 lines
353 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Notifications.Join
{
public class JoinResponseModel
{
public bool success { get; set; }
public bool userAuthError { get; set; }
public string errorMessage { get; set; }
public string kind { get; set; }
public string etag { get; set; }
}
}