aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/PhotoMetadata.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2020-08-22 23:29:54 +0200
committerBond_009 <bond.009@outlook.com>2020-08-22 23:29:54 +0200
commit4243a17c8672d6fb0c541b2b5b2802d3deead68f (patch)
tree6a779ebb4da3044ac9a0a81a4c570b00951095ba /Jellyfin.Data/Entities/PhotoMetadata.cs
parent92c491397eb81ed0d9349f11036c9f3a1e2be2e4 (diff)
Enable TreatWarningsAsErrors for Emby.Data in Release
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 b5aec7229e..3f06d3f2b5 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)
{