Files
laatzen/LaaProductionWeb/LaaProduction.Personalization/Models/EmployeeRole.cs
T
2024-12-18 15:25:14 +01:00

12 lines
201 B
C#

namespace LaaProduction.Personalization.Models
{
using System;
public class EmployeeRole
{
public int EmployeeId { get; set; }
public string Role { get; set; }
}
}