23 lines
490 B
C#
23 lines
490 B
C#
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<string> Features { get; set; } = new List<string>();
|
|
}
|
|
}
|