2020-05-05 13:13:19 +02:00
|
|
|
namespace zero.Web.Models
|
|
|
|
|
{
|
|
|
|
|
public class ApplicationListModel : ListModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
2020-05-08 14:33:45 +02:00
|
|
|
public string FullName { get; set; }
|
|
|
|
|
|
2020-05-05 13:13:19 +02:00
|
|
|
public string Image { get; set; }
|
|
|
|
|
|
|
|
|
|
public string[] Domains { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|