11 lines
217 B
C#
11 lines
217 B
C#
using System;
|
|
|
|
namespace Flexitime.Objects
|
|
{
|
|
public class Permission
|
|
{
|
|
public string Name { get; set; }
|
|
public string Tag { get; set; }
|
|
public Guid Id { get; set; }
|
|
}
|
|
} |