updated nuget

This commit is contained in:
Luke Pulverenti
2015-02-03 16:38:52 -05:00
parent 655c9ea7a1
commit 31bd7a0e9f
5 changed files with 17 additions and 6 deletions

View File

@@ -1,4 +1,5 @@
using MediaBrowser.Model.Dto;
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
@@ -29,5 +30,15 @@ namespace MediaBrowser.Model.Sync
/// </summary>
/// <value>The item identifier.</value>
public string ItemId { get; set; }
/// <summary>
/// Gets or sets the user ids with access.
/// </summary>
/// <value>The user ids with access.</value>
public List<string> UserIdsWithAccess { get; set; }
public LocalItem()
{
UserIdsWithAccess = new List<string>();
}
}
}