Add full stop at end of comments (SA1629)

This commit is contained in:
telans
2020-06-16 10:37:52 +12:00
parent 100e9d586d
commit 9018f8d8be
269 changed files with 816 additions and 816 deletions

View File

@@ -5,7 +5,7 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities
{
/// <summary>
/// This is the entity to store review ratings, not age ratings
/// This is the entity to store review ratings, not age ratings.
/// </summary>
public partial class RatingSource
{
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
/// Public constructor with required data
/// Public constructor with required data.
/// </summary>
/// <param name="maximumvalue"></param>
/// <param name="minimumvalue"></param>
@@ -62,7 +62,7 @@ namespace Jellyfin.Data.Entities
*************************************************************************/
/// <summary>
/// Backing field for Id
/// Backing field for Id.
/// </summary>
internal int _Id;
/// <summary>
@@ -75,7 +75,7 @@ namespace Jellyfin.Data.Entities
partial void GetId(ref int result);
/// <summary>
/// Identity, Indexed, Required
/// Identity, Indexed, Required.
/// </summary>
[Key]
[Required]
@@ -100,7 +100,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
/// Backing field for Name
/// Backing field for Name.
/// </summary>
protected string _Name;
/// <summary>
@@ -137,7 +137,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
/// Backing field for MaximumValue
/// Backing field for MaximumValue.
/// </summary>
protected double _MaximumValue;
/// <summary>
@@ -150,7 +150,7 @@ namespace Jellyfin.Data.Entities
partial void GetMaximumValue(ref double result);
/// <summary>
/// Required
/// Required.
/// </summary>
[Required]
public double MaximumValue
@@ -173,7 +173,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
/// Backing field for MinimumValue
/// Backing field for MinimumValue.
/// </summary>
protected double _MinimumValue;
/// <summary>
@@ -186,7 +186,7 @@ namespace Jellyfin.Data.Entities
partial void GetMinimumValue(ref double result);
/// <summary>
/// Required
/// Required.
/// </summary>
[Required]
public double MinimumValue
@@ -209,7 +209,7 @@ namespace Jellyfin.Data.Entities
}
/// <summary>
/// Required, ConcurrenyToken
/// Required, ConcurrenyToken.
/// </summary>
[ConcurrencyCheck]
[Required]