jellyfin/MediaBrowser.Controller/Sync/SyncAccount.cs
2015-02-05 16:14:08 -05:00

29 lines
729 B
C#

using System.Collections.Generic;
namespace MediaBrowser.Controller.Sync
{
public class SyncAccount
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
public string Id { get; set; }
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public List<string> UserIds { get; set; }
public SyncAccount()
{
UserIds = new List<string>();
}
}
}