#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Model.Net
{
public class NetworkShare
{
///
/// The name of the computer that this share belongs to.
///
public string Server { get; set; }
///
/// Share name.
///
public string Name { get; set; }
///
/// Local path.
///
public string Path { get; set; }
///
/// Share type.
///
public NetworkShareType ShareType { get; set; }
///
/// Comment.
///
public string Remark { get; set; }
}
}