Files
laatzen/LaaProductionWeb/LaaProduction.Services/Models/Employee.cs
T

17 lines
367 B
C#

namespace LaaProduction.Services.Models
{
using System;
using System.Collections.Generic;
public class Employee
{
public string Name { get; set; }
public bool IsValid
=> !string.IsNullOrWhiteSpace(this.Name);
public IEnumerable<string> Permissions { get; set; }
= Array.Empty<string>();
}
}