feat(domain): ProfileObject-Entität zur Repräsentation von Objekt-Metadaten hinzugefügt

ProfileObject-Klasse zu WorkFlow.Domain.Entities hinzugefügt mit folgenden Eigenschaften:
- ObjStateId
- ObjectId
- Headline1, Headline2
- Subline1, Subline2
- CmdCheckIn
This commit is contained in:
tekh 2025-07-21 10:18:57 +02:00
parent 0b70016ab6
commit 07e16f8aca
2 changed files with 15 additions and 0 deletions

View File

@ -24,4 +24,7 @@ public class Profile
[Column("BACK_COLOR")]
public string? BackColor { get; set; }
[NotMapped]
public IEnumerable<ProfileObject>? Objects;
}

View File

@ -0,0 +1,12 @@
namespace WorkFlow.Domain.Entities;
public class ProfileObject
{
public int? ObjStateId { get; set; }
public int? ObjectId { get; set; }
public string? Headline1 { get; set; }
public string? Headline2 { get; set; }
public string? Subline1 { get; set; }
public string? Subline2 { get; set; }
public string? CmdCheckIn { get; set; }
}