17 lines
370 B
C#
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>();
|
|
}
|
|
}
|