diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2020-01-11 02:11:13 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-11 02:11:13 +0300 |
| commit | dd7feacd342ce9e2a614fb932ae914c736bfc045 (patch) | |
| tree | 53ae6c7316341fc1256baac7b3f6b717c8779818 /MediaBrowser.Model | |
| parent | aca4d678a2a6aa46b57837d3a6c1bc9d4c537d7b (diff) | |
| parent | b50c4938e19eaa4508dd9192bc63c3788c2fa3eb (diff) | |
Merge pull request #2105 from Bond-009/namingtests
Add back all old emby tests
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaType.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Entities/MediaType.cs b/MediaBrowser.Model/Entities/MediaType.cs index c56c8f8f2..d8b02c9ea 100644 --- a/MediaBrowser.Model/Entities/MediaType.cs +++ b/MediaBrowser.Model/Entities/MediaType.cs @@ -3,20 +3,23 @@ namespace MediaBrowser.Model.Entities /// <summary> /// Class MediaType /// </summary> - public class MediaType + public static class MediaType { /// <summary> /// The video /// </summary> public const string Video = "Video"; + /// <summary> /// The audio /// </summary> public const string Audio = "Audio"; + /// <summary> /// The photo /// </summary> public const string Photo = "Photo"; + /// <summary> /// The book /// </summary> |
