Files
mixtape/zero.Backoffice/Endpoints/Applications/ApplicationPresentation.cs
T
2021-12-09 14:18:38 +01:00

12 lines
259 B
C#

namespace zero.Backoffice.Endpoints.Applications;
public class ApplicationPresentation : ZeroIdEntity
{
public string Alias { get; set; }
public string Name { get; set; }
public bool IsActive { get; set; }
public string ImageId { get; set; }
}