mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-29 11:02:14 +01:00
Removed guids from the model project
This commit is contained in:
@@ -311,7 +311,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the parent backdrop image tags.
|
||||
/// </summary>
|
||||
/// <value>The parent backdrop image tags.</value>
|
||||
public List<Guid> ParentBackdropImageTags { get; set; }
|
||||
public List<string> ParentBackdropImageTags { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the local trailer count.
|
||||
@@ -466,13 +466,13 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the album image tag.
|
||||
/// </summary>
|
||||
/// <value>The album image tag.</value>
|
||||
public Guid? AlbumPrimaryImageTag { get; set; }
|
||||
public string AlbumPrimaryImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the series primary image tag.
|
||||
/// </summary>
|
||||
/// <value>The series primary image tag.</value>
|
||||
public Guid? SeriesPrimaryImageTag { get; set; }
|
||||
public string SeriesPrimaryImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the album artist.
|
||||
@@ -529,25 +529,25 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the image tags.
|
||||
/// </summary>
|
||||
/// <value>The image tags.</value>
|
||||
public Dictionary<ImageType, Guid> ImageTags { get; set; }
|
||||
public Dictionary<ImageType, string> ImageTags { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the backdrop image tags.
|
||||
/// </summary>
|
||||
/// <value>The backdrop image tags.</value>
|
||||
public List<Guid> BackdropImageTags { get; set; }
|
||||
public List<string> BackdropImageTags { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the screenshot image tags.
|
||||
/// </summary>
|
||||
/// <value>The screenshot image tags.</value>
|
||||
public List<Guid> ScreenshotImageTags { get; set; }
|
||||
public List<string> ScreenshotImageTags { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the parent logo image tag.
|
||||
/// </summary>
|
||||
/// <value>The parent logo image tag.</value>
|
||||
public Guid? ParentLogoImageTag { get; set; }
|
||||
public string ParentLogoImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// If the item does not have a art, this will hold the Id of the Parent that has one.
|
||||
@@ -559,13 +559,13 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the parent art image tag.
|
||||
/// </summary>
|
||||
/// <value>The parent art image tag.</value>
|
||||
public Guid? ParentArtImageTag { get; set; }
|
||||
public string ParentArtImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the series thumb image tag.
|
||||
/// </summary>
|
||||
/// <value>The series thumb image tag.</value>
|
||||
public Guid? SeriesThumbImageTag { get; set; }
|
||||
public string SeriesThumbImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the series studio.
|
||||
@@ -583,7 +583,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the parent thumb image tag.
|
||||
/// </summary>
|
||||
/// <value>The parent thumb image tag.</value>
|
||||
public Guid? ParentThumbImageTag { get; set; }
|
||||
public string ParentThumbImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the chapters.
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the primary image tag.
|
||||
/// </summary>
|
||||
/// <value>The primary image tag.</value>
|
||||
public Guid? PrimaryImageTag { get; set; }
|
||||
public string PrimaryImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance has primary image.
|
||||
@@ -44,7 +44,7 @@ namespace MediaBrowser.Model.Dto
|
||||
{
|
||||
get
|
||||
{
|
||||
return PrimaryImageTag.HasValue;
|
||||
return PrimaryImageTag != null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the image tag.
|
||||
/// </summary>
|
||||
/// <value>The image tag.</value>
|
||||
public Guid? ImageTag { get; set; }
|
||||
public string ImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance has image.
|
||||
@@ -36,7 +36,7 @@ namespace MediaBrowser.Model.Dto
|
||||
[IgnoreDataMember]
|
||||
public bool HasImage
|
||||
{
|
||||
get { return ImageTag.HasValue; }
|
||||
get { return ImageTag != null; }
|
||||
}
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
@@ -23,7 +23,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// <summary>
|
||||
/// The image tag
|
||||
/// </summary>
|
||||
public Guid ImageTag;
|
||||
public string ImageTag;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the path.
|
||||
|
||||
@@ -56,7 +56,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// If set this will result in strong, unconditional response caching
|
||||
/// </summary>
|
||||
/// <value>The hash.</value>
|
||||
public Guid? Tag { get; set; }
|
||||
public string Tag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether [crop whitespace].
|
||||
|
||||
@@ -7,7 +7,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// </summary>
|
||||
public class ItemByNameCounts
|
||||
{
|
||||
public Guid UserId { get; set; }
|
||||
public string UserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the total count.
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the primary image tag.
|
||||
/// </summary>
|
||||
/// <value>The primary image tag.</value>
|
||||
public Guid? PrimaryImageTag { get; set; }
|
||||
public string PrimaryImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance has primary image.
|
||||
@@ -32,7 +32,7 @@ namespace MediaBrowser.Model.Dto
|
||||
{
|
||||
get
|
||||
{
|
||||
return PrimaryImageTag.HasValue;
|
||||
return PrimaryImageTag != null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace MediaBrowser.Model.Dto
|
||||
/// Gets or sets the primary image tag.
|
||||
/// </summary>
|
||||
/// <value>The primary image tag.</value>
|
||||
public Guid? PrimaryImageTag { get; set; }
|
||||
public string PrimaryImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance has password.
|
||||
@@ -73,7 +73,7 @@ namespace MediaBrowser.Model.Dto
|
||||
[IgnoreDataMember]
|
||||
public bool HasPrimaryImage
|
||||
{
|
||||
get { return PrimaryImageTag.HasValue; }
|
||||
get { return PrimaryImageTag != null; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user