mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-15 10:43:30 +01:00
Removed guids from the model project
This commit is contained in:
@@ -12,41 +12,41 @@ namespace MediaBrowser.Model.Entities
|
||||
/// Gets or sets the folders added to.
|
||||
/// </summary>
|
||||
/// <value>The folders added to.</value>
|
||||
public List<Guid> FoldersAddedTo { get; set; }
|
||||
public List<string> FoldersAddedTo { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the folders removed from.
|
||||
/// </summary>
|
||||
/// <value>The folders removed from.</value>
|
||||
public List<Guid> FoldersRemovedFrom { get; set; }
|
||||
public List<string> FoldersRemovedFrom { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the items added.
|
||||
/// </summary>
|
||||
/// <value>The items added.</value>
|
||||
public List<Guid> ItemsAdded { get; set; }
|
||||
public List<string> ItemsAdded { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the items removed.
|
||||
/// </summary>
|
||||
/// <value>The items removed.</value>
|
||||
public List<Guid> ItemsRemoved { get; set; }
|
||||
public List<string> ItemsRemoved { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the items updated.
|
||||
/// </summary>
|
||||
/// <value>The items updated.</value>
|
||||
public List<Guid> ItemsUpdated { get; set; }
|
||||
public List<string> ItemsUpdated { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="LibraryUpdateInfo"/> class.
|
||||
/// </summary>
|
||||
public LibraryUpdateInfo()
|
||||
{
|
||||
FoldersAddedTo = new List<Guid>();
|
||||
FoldersRemovedFrom = new List<Guid>();
|
||||
ItemsAdded = new List<Guid>();
|
||||
ItemsRemoved = new List<Guid>();
|
||||
ItemsUpdated = new List<Guid>();
|
||||
FoldersAddedTo = new List<string>();
|
||||
FoldersRemovedFrom = new List<string>();
|
||||
ItemsAdded = new List<string>();
|
||||
ItemsRemoved = new List<string>();
|
||||
ItemsUpdated = new List<string>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user