15 lines
374 B
C#
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
|
|
}
|
|
} |