mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-05 12:44:59 -05:00
19 lines
425 B
C#
19 lines
425 B
C#
|
|
namespace MediaBrowser.Controller.Connect
|
|
{
|
|
public class ConnectUser
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
|
|
public class ConnectUserQuery
|
|
{
|
|
public string Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Email { get; set; }
|
|
}
|
|
}
|