mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 10:29:01 -07:00
16 lines
312 B
C#
16 lines
312 B
C#
|
|
|||
|
namespace MediaBrowser.Model.LiveTv
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Class ServiceInfo
|
|||
|
/// </summary>
|
|||
|
public class LiveTvServiceInfo
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets or sets the name.
|
|||
|
/// </summary>
|
|||
|
/// <value>The name.</value>
|
|||
|
public string Name { get; set; }
|
|||
|
}
|
|||
|
}
|