mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-24 01:28:27 +01:00
improve poster sizing
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
|
||||
namespace MediaBrowser.Model.Collections
|
||||
{
|
||||
public class CollectionCreationResult
|
||||
{
|
||||
public string Id { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -23,5 +23,6 @@
|
||||
public const string Games = "games";
|
||||
public const string Channels = "channels";
|
||||
public const string LiveTv = "livetv";
|
||||
public const string Playlists = "playlists";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -75,6 +75,7 @@
|
||||
<Compile Include="Channels\ChannelQuery.cs" />
|
||||
<Compile Include="Chapters\RemoteChapterInfo.cs" />
|
||||
<Compile Include="Chapters\RemoteChapterResult.cs" />
|
||||
<Compile Include="Collections\CollectionCreationResult.cs" />
|
||||
<Compile Include="Configuration\ChannelOptions.cs" />
|
||||
<Compile Include="Configuration\ChapterOptions.cs" />
|
||||
<Compile Include="Configuration\XbmcMetadataOptions.cs" />
|
||||
@@ -204,6 +205,7 @@
|
||||
<Compile Include="Notifications\NotificationRequest.cs" />
|
||||
<Compile Include="Notifications\NotificationServiceInfo.cs" />
|
||||
<Compile Include="Notifications\NotificationTypeInfo.cs" />
|
||||
<Compile Include="Playlists\PlaylistCreationResult.cs" />
|
||||
<Compile Include="Providers\ExternalIdInfo.cs" />
|
||||
<Compile Include="Providers\ExternalUrl.cs" />
|
||||
<Compile Include="Providers\ImageProviderInfo.cs" />
|
||||
|
||||
8
MediaBrowser.Model/Playlists/PlaylistCreationResult.cs
Normal file
8
MediaBrowser.Model/Playlists/PlaylistCreationResult.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
namespace MediaBrowser.Model.Playlists
|
||||
{
|
||||
public class PlaylistCreationResult
|
||||
{
|
||||
public string Id { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user