aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/PhotoMetadata.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/PhotoMetadata.cs')
-rw-r--r--Jellyfin.Data/Entities/PhotoMetadata.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Jellyfin.Data/Entities/PhotoMetadata.cs b/Jellyfin.Data/Entities/PhotoMetadata.cs
index b5aec7229..3f06d3f2b 100644
--- a/Jellyfin.Data/Entities/PhotoMetadata.cs
+++ b/Jellyfin.Data/Entities/PhotoMetadata.cs
@@ -1,3 +1,5 @@
+#pragma warning disable CS1591
+
using System;
using System.ComponentModel.DataAnnotations.Schema;
@@ -28,6 +30,8 @@ namespace Jellyfin.Data.Entities
/// </summary>
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
+ /// <param name="dateadded">The date the object was added.</param>
+ /// <param name="datemodified">The date the object was last modified.</param>
/// <param name="_photo0"></param>
public PhotoMetadata(string title, string language, DateTime dateadded, DateTime datemodified, Photo _photo0)
{
@@ -60,6 +64,8 @@ namespace Jellyfin.Data.Entities
/// </summary>
/// <param name="title">The title or name of the object.</param>
/// <param name="language">ISO-639-3 3-character language codes.</param>
+ /// <param name="dateadded">The date the object was added.</param>
+ /// <param name="datemodified">The date the object was last modified.</param>
/// <param name="_photo0"></param>
public static PhotoMetadata Create(string title, string language, DateTime dateadded, DateTime datemodified, Photo _photo0)
{