using MediaBrowser.Model.Plugins;
namespace MediaBrowser.Plugins.Dlna.Configuration
{
///
/// Class PluginConfiguration
///
public class PluginConfiguration : BasePluginConfiguration
{
///
/// Gets or sets the friendly name of the DLNA Server.
///
/// The friendly name of the DLNA Server.
public string FriendlyDlnaName { get; set; }
///
/// Gets or sets the Port Number for the DLNA Server.
///
/// The Port Number of the DLNA Server.
public short? DlnaPortNumber { get; set; }
///
/// Gets or sets the name of the user to impersonate.
///
/// The name of the User.
public string UserName { get; set; }
///
/// Initializes a new instance of the class.
///
public PluginConfiguration()
: base()
{
//this.DlnaPortNumber = 1845;
this.FriendlyDlnaName = "MB3 UPnP";
this.UserName = string.Empty;
}
}
}