17 lines
376 B
C#
17 lines
376 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Flexitime.Objects
|
|
{
|
|
public class Application
|
|
{
|
|
public Application()
|
|
{
|
|
Permissions = new List<Permission>();
|
|
}
|
|
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public List<Permission> Permissions { get; set; }
|
|
}
|
|
} |