16 lines
382 B
C#
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; }
|
|
}
|
|
} |