aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Updates
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-06-04 23:57:57 +0900
committerdkanada <dkanada@users.noreply.github.com>2020-06-04 23:57:57 +0900
commitb7f4b8e2b5a61e3784b3e5dc68c1123bddbff264 (patch)
tree52973ae8430ceeb62bb877a0fd6680d518d3b6b8 /MediaBrowser.Model/Updates
parent836741f2aa6d2140051a50f746602e4b8c63a231 (diff)
initial implementation for custom plugin repositories
Diffstat (limited to 'MediaBrowser.Model/Updates')
-rw-r--r--MediaBrowser.Model/Updates/RepositoryInfo.cs34
1 files changed, 34 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Updates/RepositoryInfo.cs b/MediaBrowser.Model/Updates/RepositoryInfo.cs
new file mode 100644
index 000000000..c07abc809
--- /dev/null
+++ b/MediaBrowser.Model/Updates/RepositoryInfo.cs
@@ -0,0 +1,34 @@
+using System;
+
+namespace MediaBrowser.Model.Updates
+{
+ /// <summary>
+ /// Class RepositoryInfo.
+ /// </summary>
+ public class RepositoryInfo
+ {
+ /// <summary>
+ /// Gets or sets the name.
+ /// </summary>
+ /// <value>The name.</value>
+ public string Name { get; set; }
+
+ /// <summary>
+ /// Gets or sets the URL.
+ /// </summary>
+ /// <value>The URL.</value>
+ public string Url { get; set; }
+
+ /// <summary>
+ /// Gets or sets the ID.
+ /// </summary>
+ /// <value>The ID.</value>
+ public Guid Id { get; set; }
+
+ /// <summary>
+ /// Gets or sets the enabled status of the repository.
+ /// </summary>
+ /// <value>The enabled status.</value>
+ public bool Enabled { get; set; }
+ }
+}