FlexitimeTracker/FlexitimeUI/Flexitime.Objects/Application.cs
Chris Watts 005da7ce2b create initial react project for flexitime v2 application.
includes .net webapi backend and ui test stubs
2021-03-22 14:54:42 +00:00

16 lines
382 B
C#

using System.Collections.Generic;
namespace Flexitime.Objects
{
public class Application
{
public Application()
{
Permissions = new List<Permission>();
}
public int Id { get; set; } //TODO make this GUID
public string Name { get; set; }
public List<Permission> Permissions { get; set; }
}
}