Files
ersatztv/ErsatzTV.Core/Domain/Library/LibraryMediaKind.cs
T
Jason DoveandGitHub f8c4f44216 add basic image library support (#1608)
* add basic image library support

* add image page

* update changelog
2024-02-11 11:24:19 -06:00

12 lines
172 B
C#

namespace ErsatzTV.Core.Domain;
public enum LibraryMediaKind
{
Movies = 1,
Shows = 2,
MusicVideos = 3,
OtherVideos = 4,
Songs = 5,
Images = 6
}