* add basic image library support * add image page * update changelog
12 lines
172 B
C#
12 lines
172 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum LibraryMediaKind
|
|
{
|
|
Movies = 1,
|
|
Shows = 2,
|
|
MusicVideos = 3,
|
|
OtherVideos = 4,
|
|
Songs = 5,
|
|
Images = 6
|
|
}
|