using System.Collections.Generic; using zero.Core.Entities; namespace zero.Web.Models { public class ApplicationEditModel : ObsoleteEditModel { public string Name { get; set; } public string ImageId { get; set; } public string IconId { get; set; } public string[] Domains { get; set; } = new string[] { }; public string FullName { get; set; } public string Email { get; set; } public List Features { get; set; } = new List(); } }