using System; using System.Collections.Generic; namespace Flexitime.Objects { public class Application { public Application() { Permissions = new List(); } public Guid Id { get; set; } public string Name { get; set; } public List Permissions { get; set; } } }