Files
mixtape/zero.Web/Models/ApplicationListModel.cs
T
2020-05-08 14:33:45 +02:00

16 lines
290 B
C#

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