mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-16 04:30:24 +01:00
Add full stop at end of comments (SA1629)
This commit is contained in:
@@ -28,7 +28,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Public constructor with required data
|
||||
/// Public constructor with required data.
|
||||
/// </summary>
|
||||
/// <param name="path">Relative to the LibraryRoot</param>
|
||||
/// <param name="kind"></param>
|
||||
@@ -64,7 +64,7 @@ namespace Jellyfin.Data.Entities
|
||||
*************************************************************************/
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Id
|
||||
/// Backing field for Id.
|
||||
/// </summary>
|
||||
internal int _Id;
|
||||
/// <summary>
|
||||
@@ -77,7 +77,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetId(ref int result);
|
||||
|
||||
/// <summary>
|
||||
/// Identity, Indexed, Required
|
||||
/// Identity, Indexed, Required.
|
||||
/// </summary>
|
||||
[Key]
|
||||
[Required]
|
||||
@@ -102,7 +102,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Path
|
||||
/// Backing field for Path.
|
||||
/// </summary>
|
||||
protected string _Path;
|
||||
/// <summary>
|
||||
@@ -116,7 +116,7 @@ namespace Jellyfin.Data.Entities
|
||||
|
||||
/// <summary>
|
||||
/// Required, Max length = 65535
|
||||
/// Relative to the LibraryRoot
|
||||
/// Relative to the LibraryRoot.
|
||||
/// </summary>
|
||||
[Required]
|
||||
[MaxLength(65535)]
|
||||
@@ -141,7 +141,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Backing field for Kind
|
||||
/// Backing field for Kind.
|
||||
/// </summary>
|
||||
protected Enums.MediaFileKind _Kind;
|
||||
/// <summary>
|
||||
@@ -154,7 +154,7 @@ namespace Jellyfin.Data.Entities
|
||||
partial void GetKind(ref Enums.MediaFileKind result);
|
||||
|
||||
/// <summary>
|
||||
/// Required
|
||||
/// Required.
|
||||
/// </summary>
|
||||
[Required]
|
||||
public Enums.MediaFileKind Kind
|
||||
@@ -177,7 +177,7 @@ namespace Jellyfin.Data.Entities
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Required, ConcurrenyToken
|
||||
/// Required, ConcurrenyToken.
|
||||
/// </summary>
|
||||
[ConcurrencyCheck]
|
||||
[Required]
|
||||
|
||||
Reference in New Issue
Block a user