* include cache header on artwork responses * rework movie page to include fan art * full width app bar * dark mode * cleanup * fix placeholder color
11 lines
158 B
C#
11 lines
158 B
C#
namespace ErsatzTV.Core.Domain
|
|
{
|
|
public enum ArtworkKind
|
|
{
|
|
Poster = 0,
|
|
Thumbnail = 1,
|
|
Logo = 2,
|
|
FanArt = 3
|
|
}
|
|
}
|