feat: extend default Profile with sample ProfileObjects

- Added two sample `ProfileObject` instances to the static `Default` Profile
- Includes object metadata like ObjStateId, ObjectId, headlines, and sublines
- Enhances the default response of `GET /api/profile` for testing/demo purposes
This commit is contained in:
2025-07-21 10:24:43 +02:00
parent 07e16f8aca
commit a78c117a47
2 changed files with 31 additions and 2 deletions

View File

@@ -3,10 +3,16 @@
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; }
}