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