mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-24 19:14:56 +01:00
minor namespace changes in the model
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum MediaType
|
||||
/// </summary>
|
||||
public enum MediaType
|
||||
{
|
||||
/// <summary>
|
||||
/// The audio
|
||||
/// </summary>
|
||||
Audio,
|
||||
/// <summary>
|
||||
/// The game
|
||||
/// </summary>
|
||||
Game,
|
||||
/// <summary>
|
||||
/// The video
|
||||
/// </summary>
|
||||
Video
|
||||
}
|
||||
}
|
||||
@@ -45,8 +45,7 @@
|
||||
<Compile Include="Dto\BaseItemPerson.cs" />
|
||||
<Compile Include="Dto\ChapterInfoDto.cs" />
|
||||
<Compile Include="Dto\IItemDto.cs" />
|
||||
<Compile Include="Dto\ItemsByNameQuery.cs" />
|
||||
<Compile Include="Dto\MediaType.cs" />
|
||||
<Compile Include="Querying\ItemsByNameQuery.cs" />
|
||||
<Compile Include="Entities\BaseItemInfo.cs" />
|
||||
<Compile Include="Connectivity\ClientConnectionInfo.cs" />
|
||||
<Compile Include="Connectivity\ClientType.cs" />
|
||||
@@ -63,8 +62,8 @@
|
||||
<Compile Include="Globalization\CultureDto.cs" />
|
||||
<Compile Include="IO\FileSystemEntryInfo.cs" />
|
||||
<Compile Include="Dto\ImageOptions.cs" />
|
||||
<Compile Include="Dto\ItemFilter.cs" />
|
||||
<Compile Include="Dto\ItemQuery.cs" />
|
||||
<Compile Include="Querying\ItemFilter.cs" />
|
||||
<Compile Include="Querying\ItemQuery.cs" />
|
||||
<Compile Include="Entities\LibraryUpdateInfo.cs" />
|
||||
<Compile Include="Entities\ParentalRating.cs" />
|
||||
<Compile Include="Dto\StreamOptions.cs" />
|
||||
@@ -90,11 +89,11 @@
|
||||
<Compile Include="Configuration\UserConfiguration.cs" />
|
||||
<Compile Include="Drawing\DrawingUtils.cs" />
|
||||
<Compile Include="Dto\UserItemDataDto.cs" />
|
||||
<Compile Include="Dto\ItemFields.cs" />
|
||||
<Compile Include="Dto\ItemSortBy.cs" />
|
||||
<Compile Include="Querying\ItemFields.cs" />
|
||||
<Compile Include="Querying\ItemSortBy.cs" />
|
||||
<Compile Include="Dto\BaseItemDto.cs" />
|
||||
<Compile Include="Dto\UserDto.cs" />
|
||||
<Compile Include="Dto\ItemsResult.cs" />
|
||||
<Compile Include="Querying\ItemsResult.cs" />
|
||||
<Compile Include="Entities\DisplayPreferences.cs" />
|
||||
<Compile Include="Entities\ImageType.cs" />
|
||||
<Compile Include="Entities\IHasProviderIds.cs" />
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
namespace MediaBrowser.Model.Querying
|
||||
{
|
||||
/// <summary>
|
||||
/// Used to control the data that gets attached to DtoBaseItems
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
namespace MediaBrowser.Model.Querying
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum ItemFilter
|
||||
@@ -1,7 +1,8 @@
|
||||
using MediaBrowser.Model.Entities;
|
||||
using MediaBrowser.Model.Dto;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
namespace MediaBrowser.Model.Querying
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains all the possible parameters that can be used to query for items
|
||||
@@ -1,5 +1,5 @@
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
namespace MediaBrowser.Model.Querying
|
||||
{
|
||||
/// <summary>
|
||||
/// These represent sort orders that are known by the core
|
||||
@@ -1,7 +1,8 @@
|
||||
using MediaBrowser.Model.Entities;
|
||||
using MediaBrowser.Model.Dto;
|
||||
using MediaBrowser.Model.Entities;
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
namespace MediaBrowser.Model.Querying
|
||||
{
|
||||
/// <summary>
|
||||
/// Class ItemsByNameQuery
|
||||
@@ -1,6 +1,7 @@
|
||||
using ProtoBuf;
|
||||
using MediaBrowser.Model.Dto;
|
||||
using ProtoBuf;
|
||||
|
||||
namespace MediaBrowser.Model.Dto
|
||||
namespace MediaBrowser.Model.Querying
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents the result of a query for items
|
||||
Reference in New Issue
Block a user