mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
Changed ConnectSignupResponse to be an enum
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
|
||||
namespace MediaBrowser.Model.ApiClient
|
||||
namespace MediaBrowser.Model.ApiClient
|
||||
{
|
||||
public class ConnectSignupResponse
|
||||
public enum ConnectSignupResponse
|
||||
{
|
||||
public bool IsSuccessful { get; set; }
|
||||
public bool IsEmailInUse { get; set; }
|
||||
public bool IsUsernameInUse { get; set; }
|
||||
Success,
|
||||
EmailInUse,
|
||||
UsernameInUser
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user