diff options
Diffstat (limited to 'Emby.Naming/Common/MediaType.cs')
| -rw-r--r-- | Emby.Naming/Common/MediaType.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Emby.Naming/Common/MediaType.cs b/Emby.Naming/Common/MediaType.cs new file mode 100644 index 000000000..2a3d433cf --- /dev/null +++ b/Emby.Naming/Common/MediaType.cs @@ -0,0 +1,19 @@ + +namespace Emby.Naming.Common +{ + public enum MediaType + { + /// <summary> + /// The audio + /// </summary> + Audio = 0, + /// <summary> + /// The photo + /// </summary> + Photo = 1, + /// <summary> + /// The video + /// </summary> + Video = 2 + } +} |
