Add developer flag to profiles

This commit is contained in:
Holden
2026-06-26 15:09:16 -05:00
parent 706c4f13d8
commit dbe33f3148
5 changed files with 213 additions and 0 deletions

View File

@@ -9,4 +9,7 @@ public class ProfileDTO
[JsonPropertyName("Name")]
public required string Name { get; init; }
[JsonPropertyName("Developer")]
public bool IsDeveloper { get; init; }
}