Files
mixtape/zero.Backoffice/Modules/Applications/ApplicationEditModel.cs
T
2021-11-24 14:37:32 +01:00

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>();
}
}