refactor(User): Aktualisierung des User-Modells.

This commit is contained in:
2025-07-22 14:15:35 +02:00
parent 06303ec2b5
commit de360968dc
3 changed files with 15 additions and 3 deletions

View File

@@ -106,7 +106,11 @@ namespace DigitalData.UserManager.Domain.Entities
public int UserIdFkIntEcm { get; set; }
[Column("DELETED_WHEN")]
public DateTime DeletedWhen { get; set; }
public DateTime
#if NET7_0_OR_GREATER
?
#endif
DeletedWhen { get; set; }
[Column("DELETED_WHO")]
[StringLength(50)]
@@ -114,6 +118,10 @@ namespace DigitalData.UserManager.Domain.Entities
#if NET7_0_OR_GREATER
required
#endif
string DeletedWho { get; set; }
string
#if NET7_0_OR_GREATER
?
# endif
DeletedWho { get; set; }
}
}