namespace zero.Api.Endpoints.Applications; public class ApplicationEdit : DisplayModel { public string ImageId { get; set; } public string IconId { get; set; } public Uri[] Domains { get; set; } = Array.Empty(); public string FullName { get; set; } public string Email { get; set; } public List Features { get; set; } = new(); }