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