applications CRUD + input-list form component

This commit is contained in:
2020-05-05 13:13:19 +02:00
parent 78efe84899
commit 0ec6291ef2
25 changed files with 891 additions and 36 deletions
+22
View File
@@ -0,0 +1,22 @@
using System.Collections.Generic;
using zero.Core.Entities;
namespace zero.Web.Models
{
public class ApplicationEditModel : EditModel
{
public string Name { get; set; }
public Media Image { get; set; }
public Media Icon { 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>();
}
}