diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-02-07 23:45:21 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-07 23:45:21 +0900 |
| commit | 75d6545145eee8112f03f82ebb4d8c1b414aa192 (patch) | |
| tree | 4a82bcdb8ace617b8d0feba19aec8a9f2a629c5b /MediaBrowser.Model/Entities/MediaStreamType.cs | |
| parent | 1ae9ed6e2aefb323f9959f9ed7a0c7950dd630c6 (diff) | |
| parent | f47ad85011a1251c3fda8a213c0b96dcf46d5e05 (diff) | |
Merge pull request #2373 from Bond-009/warn14
Fix some warnings in MediaBrowser.Model
Diffstat (limited to 'MediaBrowser.Model/Entities/MediaStreamType.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaStreamType.cs | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Entities/MediaStreamType.cs b/MediaBrowser.Model/Entities/MediaStreamType.cs index 4fc1e5372..e09aaf6d0 100644 --- a/MediaBrowser.Model/Entities/MediaStreamType.cs +++ b/MediaBrowser.Model/Entities/MediaStreamType.cs @@ -1,24 +1,27 @@ namespace MediaBrowser.Model.Entities { /// <summary> - /// Enum MediaStreamType + /// Enum MediaStreamType. /// </summary> public enum MediaStreamType { /// <summary> - /// The audio + /// The audio. /// </summary> Audio, + /// <summary> - /// The video + /// The video. /// </summary> Video, + /// <summary> - /// The subtitle + /// The subtitle. /// </summary> Subtitle, + /// <summary> - /// The embedded image + /// The embedded image. /// </summary> EmbeddedImage } |
