2020-05-05 13:13:19 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using zero.Core.Entities;
|
|
|
|
|
|
|
|
|
|
namespace zero.Web.Models
|
|
|
|
|
{
|
2020-05-22 15:06:17 +02:00
|
|
|
public class ApplicationEditModel : ObsoleteEditModel
|
2020-05-05 13:13:19 +02:00
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2020-05-15 14:23:47 +02:00
|
|
|
public string ImageId { get; set; }
|
2020-05-05 13:13:19 +02:00
|
|
|
|
2020-05-15 14:23:47 +02:00
|
|
|
public string IconId { get; set; }
|
2020-05-05 13:13:19 +02:00
|
|
|
|
|
|
|
|
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>();
|
|
|
|
|
}
|
|
|
|
|
}
|