aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/UserLibrary/YearsService.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2020-06-16 11:54:58 +0200
committerGitHub <noreply@github.com>2020-06-16 11:54:58 +0200
commit9af6eda0b495649e3a77694b2bb30abad1a26484 (patch)
tree687bb3b59f2efce0da15e919ae5e5123f4380ee2 /MediaBrowser.Api/UserLibrary/YearsService.cs
parent4d91060c25662774c6f57941c78fcb73df6fdefa (diff)
parent9018f8d8be10bc4812f7d1bd230a1516eca61eea (diff)
Merge pull request #3343 from telans/comment-stops
Add full stop at end of comments (SA1629)
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/YearsService.cs')
-rw-r--r--MediaBrowser.Api/UserLibrary/YearsService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Api/UserLibrary/YearsService.cs b/MediaBrowser.Api/UserLibrary/YearsService.cs
index d023ee90a..0523f89fa 100644
--- a/MediaBrowser.Api/UserLibrary/YearsService.cs
+++ b/MediaBrowser.Api/UserLibrary/YearsService.cs
@@ -13,7 +13,7 @@ using Microsoft.Extensions.Logging;
namespace MediaBrowser.Api.UserLibrary
{
/// <summary>
- /// Class GetYears
+ /// Class GetYears.
/// </summary>
[Route("/Years", "GET", Summary = "Gets all years from a given item, folder, or the entire library")]
public class GetYears : GetItemsByName
@@ -21,7 +21,7 @@ namespace MediaBrowser.Api.UserLibrary
}
/// <summary>
- /// Class GetYear
+ /// Class GetYear.
/// </summary>
[Route("/Years/{Year}", "GET", Summary = "Gets a year")]
public class GetYear : IReturn<BaseItemDto>
@@ -42,7 +42,7 @@ namespace MediaBrowser.Api.UserLibrary
}
/// <summary>
- /// Class YearsService
+ /// Class YearsService.
/// </summary>
[Authenticated]
public class YearsService : BaseItemsByNameService<Year>