sync updates

This commit is contained in:
Luke Pulverenti
2014-12-27 01:24:46 -05:00
parent 55b9bffabc
commit 52caa0def1
68 changed files with 711 additions and 191 deletions

View File

@@ -367,6 +367,7 @@
<Compile Include="Session\TranscodingInfo.cs" />
<Compile Include="Session\UserDataChangeInfo.cs" />
<Compile Include="Devices\ContentUploadHistory.cs" />
<Compile Include="Sync\DeviceFileInfo.cs" />
<Compile Include="Sync\ItemFIleInfo.cs" />
<Compile Include="Sync\ItemFileType.cs" />
<Compile Include="Sync\SyncCategory.cs" />

View File

@@ -0,0 +1,9 @@

namespace MediaBrowser.Model.Sync
{
public class DeviceFileInfo
{
public string Path { get; set; }
public string Name { get; set; }
}
}

View File

@@ -10,19 +10,24 @@ namespace MediaBrowser.Model.Sync
/// <value>The type.</value>
public ItemFileType Type { get; set; }
/// <summary>
/// Gets or sets the item identifier.
/// </summary>
/// <value>The item identifier.</value>
public string ItemId { get; set; }
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
/// <summary>
/// Gets or sets the type of the image.
/// </summary>
/// <value>The type of the image.</value>
public ImageType ImageType { get; set; }
/// <summary>
/// Gets or sets the item identifier.
/// </summary>
/// <value>The item identifier.</value>
public string ItemId { get; set; }
}
}

View File

@@ -4,6 +4,7 @@ namespace MediaBrowser.Model.Users
{
public class UserAction
{
public string Id { get; set; }
public string ServerId { get; set; }
public string UserId { get; set; }
public string ItemId { get; set; }