From cfbd0f013dcf32521c4e345dcc6a6c1dae3a217a Mon Sep 17 00:00:00 2001 From: TekH Date: Sun, 3 Aug 2025 09:56:42 +0200 Subject: [PATCH] fix property naming --- src/WorkFlow.Application/Dto/TfFileDto.cs | 2 +- src/WorkFlow.Domain/Entities/TfFile.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WorkFlow.Application/Dto/TfFileDto.cs b/src/WorkFlow.Application/Dto/TfFileDto.cs index c13736e..dfa4ea6 100644 --- a/src/WorkFlow.Application/Dto/TfFileDto.cs +++ b/src/WorkFlow.Application/Dto/TfFileDto.cs @@ -2,7 +2,7 @@ public class TfFileDto { - public string FFapth { get; set; } = null!; + public string Path { get; set; } = null!; public string? Headline { get; set; } diff --git a/src/WorkFlow.Domain/Entities/TfFile.cs b/src/WorkFlow.Domain/Entities/TfFile.cs index 422d4c9..0147d28 100644 --- a/src/WorkFlow.Domain/Entities/TfFile.cs +++ b/src/WorkFlow.Domain/Entities/TfFile.cs @@ -17,7 +17,7 @@ public class TfFile [Required] [StringLength(512)] [Column("F_FAPTH", TypeName = "nvarchar(512)")] - public string FFapth { get; set; } = null!; + public string Path { get; set; } = null!; /// /// Although this field is marked as nullable in the database schema to allow