Add XML docs to small entity interfaces and remove CS1591 suppressions
This commit is contained in:
@@ -1,11 +1,23 @@
|
||||
#pragma warning disable CS1591
|
||||
|
||||
namespace MediaBrowser.Controller.Entities
|
||||
{
|
||||
/// <summary>
|
||||
/// The source of an item.
|
||||
/// </summary>
|
||||
public enum SourceType
|
||||
{
|
||||
/// <summary>
|
||||
/// The item comes from a library.
|
||||
/// </summary>
|
||||
Library = 0,
|
||||
|
||||
/// <summary>
|
||||
/// The item comes from a channel.
|
||||
/// </summary>
|
||||
Channel = 1,
|
||||
|
||||
/// <summary>
|
||||
/// The item comes from live TV.
|
||||
/// </summary>
|
||||
LiveTV = 2
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user