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:
parent
0b70016ab6
commit
07e16f8aca
@ -24,4 +24,7 @@ public class Profile
|
||||
|
||||
[Column("BACK_COLOR")]
|
||||
public string? BackColor { get; set; }
|
||||
|
||||
[NotMapped]
|
||||
public IEnumerable<ProfileObject>? Objects;
|
||||
}
|
||||
12
src/WorkFlow.Domain/Entities/ProfileObjects.cs
Normal file
12
src/WorkFlow.Domain/Entities/ProfileObjects.cs
Normal 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; }
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user