using ProtoBuf;
using System.Collections.Generic;
namespace MediaBrowser.Model.Entities
{
///
/// Used to hold information about a user's list of configured virtual folders
///
[ProtoContract]
public class VirtualFolderInfo
{
///
/// Gets or sets the name.
///
/// The name.
[ProtoMember(1)]
public string Name { get; set; }
///
/// Gets or sets the locations.
///
/// The locations.
[ProtoMember(2)]
public List Locations { get; set; }
}
}