mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-12 10:40:24 +01:00
Removed guids from the model project
This commit is contained in:
@@ -45,7 +45,7 @@ namespace MediaBrowser.Model.LiveTv
|
||||
/// Gets or sets the channel primary image tag.
|
||||
/// </summary>
|
||||
/// <value>The channel primary image tag.</value>
|
||||
public Guid? ChannelPrimaryImageTag { get; set; }
|
||||
public string ChannelPrimaryImageTag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the play access.
|
||||
@@ -136,7 +136,7 @@ namespace MediaBrowser.Model.LiveTv
|
||||
/// 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 user data.
|
||||
@@ -211,7 +211,7 @@ namespace MediaBrowser.Model.LiveTv
|
||||
public ProgramInfoDto()
|
||||
{
|
||||
Genres = new List<string>();
|
||||
ImageTags = new Dictionary<ImageType, Guid>();
|
||||
ImageTags = new Dictionary<ImageType, string>();
|
||||
}
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
Reference in New Issue
Block a user