aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Sync/SyncAccount.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-02-07 01:02:42 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-02-07 01:02:42 -0500
commitcf0875ef6c3b36f3dae9f3effbc147f763e8614a (patch)
tree8e39a6f70930e2d8726f0017e56ee19a849df2de /MediaBrowser.Controller/Sync/SyncAccount.cs
parente6e5d1a79484a627a5fef3989f6bf6d17875a4b3 (diff)
sync updates
Diffstat (limited to 'MediaBrowser.Controller/Sync/SyncAccount.cs')
-rw-r--r--MediaBrowser.Controller/Sync/SyncAccount.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/MediaBrowser.Controller/Sync/SyncAccount.cs b/MediaBrowser.Controller/Sync/SyncAccount.cs
deleted file mode 100644
index 882e948d1..000000000
--- a/MediaBrowser.Controller/Sync/SyncAccount.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using System.Collections.Generic;
-
-namespace MediaBrowser.Controller.Sync
-{
- public class SyncAccount
- {
- /// <summary>
- /// Gets or sets the name.
- /// </summary>
- /// <value>The name.</value>
- public string Name { get; set; }
- /// <summary>
- /// Gets or sets the identifier.
- /// </summary>
- /// <value>The identifier.</value>
- public string Id { get; set; }
- /// <summary>
- /// Gets or sets the user identifier.
- /// </summary>
- /// <value>The user identifier.</value>
- public List<string> UserIds { get; set; }
-
- public SyncAccount()
- {
- UserIds = new List<string>();
- }
- }
-}