jellyfin/MediaBrowser.Model/Net/NetworkShare.cs

34 lines
740 B
C#
Raw Normal View History

#nullable disable
2020-02-04 01:49:27 +01:00
#pragma warning disable CS1591
2018-12-28 00:27:57 +01:00
namespace MediaBrowser.Model.Net
{
public class NetworkShare
{
/// <summary>
/// The name of the computer that this share belongs to.
2018-12-28 00:27:57 +01:00
/// </summary>
public string Server { get; set; }
/// <summary>
/// Share name.
2018-12-28 00:27:57 +01:00
/// </summary>
public string Name { get; set; }
/// <summary>
/// Local path.
2018-12-28 00:27:57 +01:00
/// </summary>
public string Path { get; set; }
/// <summary>
/// Share type.
2018-12-28 00:27:57 +01:00
/// </summary>
public NetworkShareType ShareType { get; set; }
/// <summary>
/// Comment.
2018-12-28 00:27:57 +01:00
/// </summary>
public string Remark { get; set; }
}
}