diff --git a/src/WorkFlow.Domain/Entities/Profile.cs b/src/WorkFlow.Domain/Entities/Profile.cs index 3548746..09660fe 100644 --- a/src/WorkFlow.Domain/Entities/Profile.cs +++ b/src/WorkFlow.Domain/Entities/Profile.cs @@ -24,4 +24,7 @@ public class Profile [Column("BACK_COLOR")] public string? BackColor { get; set; } + + [NotMapped] + public IEnumerable? Objects; } \ No newline at end of file diff --git a/src/WorkFlow.Domain/Entities/ProfileObjects.cs b/src/WorkFlow.Domain/Entities/ProfileObjects.cs new file mode 100644 index 0000000..e6e55af --- /dev/null +++ b/src/WorkFlow.Domain/Entities/ProfileObjects.cs @@ -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; } +} \ No newline at end of file