mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-03 17:33:32 -05: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; }
|
|
}
|
|
}
|