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