applications CRUD + input-list form component
This commit is contained in:
@@ -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>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user