New: Join notifications

Closes #1197
This commit is contained in:
Christopher Heath
2016-07-26 11:12:09 -05:00
committed by Mark McDowall
parent e4adc1d3a1
commit 626d94d435
7 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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; }
}
}