aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Sync/SyncAccount.cs
diff options
context:
space:
mode:
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>();
- }
- }
-}