mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-29 22:48:18 +00:00
11 lines
231 B
C#
11 lines
231 B
C#
|
|
namespace MediaBrowser.Controller.Connect
|
|
{
|
|
public class ConnectUserLink
|
|
{
|
|
public string Username { get; set; }
|
|
public string UserId { get; set; }
|
|
public string LocalUserId { get; set; }
|
|
}
|
|
}
|