mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-08 23:33:03 +01:00
Add full stop at end of comments (SA1629)
This commit is contained in:
@@ -25,7 +25,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="language">ISO-639-3 3-character language codes</param>
|
||||
/// <param name="timestart"></param>
|
||||
@@ -60,7 +60,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -73,7 +73,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -98,7 +98,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Name
|
||||
/// Backing field for Name.
|
||||
/// </summary>
|
||||
protected string _Name;
|
||||
/// <summary>
|
||||
@@ -135,7 +135,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Language
|
||||
/// Backing field for Language.
|
||||
/// </summary>
|
||||
protected string _Language;
|
||||
/// <summary>
|
||||
@@ -149,7 +149,7 @@ namespace Jellyfin.Data.Entities
|
||||
|
||||
/// <summary>
|
||||
/// Required, Min length = 3, Max length = 3
|
||||
/// ISO-639-3 3-character language codes
|
||||
/// ISO-639-3 3-character language codes.
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MinLength(3)]
|
||||
@@ -175,7 +175,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for TimeStart
|
||||
/// Backing field for TimeStart.
|
||||
/// </summary>
|
||||
protected long _TimeStart;
|
||||
/// <summary>
|
||||
@@ -188,7 +188,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetTimeStart(ref long result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public long TimeStart
|
||||
@@ -211,7 +211,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for TimeEnd
|
||||
/// Backing field for TimeEnd.
|
||||
/// </summary>
|
||||
protected long? _TimeEnd;
|
||||
/// <summary>
|
||||
@@ -243,7 +243,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
Reference in New Issue
Block a user