added sync model objects

This commit is contained in:
Luke Pulverenti
2014-07-15 00:12:26 -04:00
parent 98012480f7
commit 6375411f53
14 changed files with 287 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
namespace MediaBrowser.Model.Sync
{
public class SyncSchedule
{
/// <summary>
/// Gets or sets the identifier.
/// </summary>
/// <value>The identifier.</value>
public string Id { get; set; }
}
}