Files
mixtape/zero.Web/Models/ApplicationListModel.cs
T
2020-05-15 14:23:47 +02:00

16 lines
292 B
C#

namespace zero.Web.Models
{
public class ApplicationListModel : ListModel
{
public string Name { get; set; }
public string FullName { get; set; }
public string ImageId { get; set; }
public string[] Domains { get; set; }
public bool IsActive { get; set; }
}
}