laatzen/LaaProductionWeb/LaaProduction.Services/Models/Employee.cs
2024-07-17 13:13:41 +02:00

17 lines
370 B
C#

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