fix property naming

This commit is contained in:
tekh 2025-08-03 09:56:42 +02:00
parent d4b33d4b9a
commit cfbd0f013d
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
public class TfFileDto public class TfFileDto
{ {
public string FFapth { get; set; } = null!; public string Path { get; set; } = null!;
public string? Headline { get; set; } public string? Headline { get; set; }

View File

@ -17,7 +17,7 @@ public class TfFile
[Required] [Required]
[StringLength(512)] [StringLength(512)]
[Column("F_FAPTH", TypeName = "nvarchar(512)")] [Column("F_FAPTH", TypeName = "nvarchar(512)")]
public string FFapth { get; set; } = null!; public string Path { get; set; } = null!;
/// <summary> /// <summary>
/// Although this field is marked as <c>nullable</c> in the database schema to allow /// Although this field is marked as <c>nullable</c> in the database schema to allow