diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-07 01:02:42 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-07 01:02:42 -0500 |
| commit | cf0875ef6c3b36f3dae9f3effbc147f763e8614a (patch) | |
| tree | 8e39a6f70930e2d8726f0017e56ee19a849df2de /MediaBrowser.Controller/Sync/SyncAccount.cs | |
| parent | e6e5d1a79484a627a5fef3989f6bf6d17875a4b3 (diff) | |
sync updates
Diffstat (limited to 'MediaBrowser.Controller/Sync/SyncAccount.cs')
| -rw-r--r-- | MediaBrowser.Controller/Sync/SyncAccount.cs | 28 |
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>(); - } - } -} |
