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