aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasStartDate.cs
diff options
context:
space:
mode:
authormbastian77 <michael.bastian@visop.de>2026-07-15 16:07:56 +0200
committermbastian77 <michael.bastian@visop.de>2026-07-15 16:07:56 +0200
commit997093ae3a800ea06e41523d0407de570eaaa4e6 (patch)
tree91b1e82073914b2ee04dbcfea89e7ee91b81cfa5 /MediaBrowser.Controller/Entities/IHasStartDate.cs
parentb6882c86dccfdda94991f0ed978c6f0d0fe4c4ea (diff)
Add XML docs to small entity interfaces and remove CS1591 suppressions
Diffstat (limited to 'MediaBrowser.Controller/Entities/IHasStartDate.cs')
-rw-r--r--MediaBrowser.Controller/Entities/IHasStartDate.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Entities/IHasStartDate.cs b/MediaBrowser.Controller/Entities/IHasStartDate.cs
index dab15eb018..47df09d1ce 100644
--- a/MediaBrowser.Controller/Entities/IHasStartDate.cs
+++ b/MediaBrowser.Controller/Entities/IHasStartDate.cs
@@ -1,11 +1,15 @@
-#pragma warning disable CS1591
-
using System;
namespace MediaBrowser.Controller.Entities
{
+ /// <summary>
+ /// Interface for items that have a start date.
+ /// </summary>
public interface IHasStartDate
{
+ /// <summary>
+ /// Gets or sets the start date.
+ /// </summary>
DateTime StartDate { get; set; }
}
}