Refactor ProfileControlsTFDto and update ProfileControlsTF

The `ProfileControlsTFDto` class has been changed from a record type to a class with auto-implemented properties, enhancing its structure and usability. Several properties have been renamed or removed, and new properties like `DialogNo`, `Text`, and `Icon` have been added.

In the `ProfileControlsTF` class, the `Sequ` property has been updated to remove its default value assignment, maintaining its nullable byte type.
This commit is contained in:
2025-08-01 11:10:24 +02:00
parent 7ed86f18d7
commit c2e8b335e0
2 changed files with 24 additions and 17 deletions

View File

@@ -89,7 +89,7 @@ public class ProfileControlsTF
public bool? ReadOnly { get; set; }
[Column("SEQU", TypeName = "tinyint")]
public byte? Sequ { get; set; } = 0;
public byte? Sequ { get; set; }
[Column("ADDED_WHO", TypeName = "nvarchar(100)")]
public required string AddedWho { get; set; }