mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
14 lines
353 B
C#
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; }
|
|
}
|
|
}
|