FlexitimeTracker/FlexitimeUI/Flexitime.Objects/Permission.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

15 lines
374 B
C#

namespace Flexitime.Objects
{
public class Permission
{
public Permission()
{
Application = new Application();
}
public Application Application { get; set; }
public string Name { get; set; }
public string Tag { get; set; }
public int Id { get; set; } //TODO switch to guid
}
}