12 lines
205 B
C#
12 lines
205 B
C#
namespace LaaProduction.Personalization.Models
|
|
{
|
|
using System;
|
|
|
|
internal class EmployeeRole
|
|
{
|
|
public Int32 EmployeeId { get; set; }
|
|
|
|
public String Role { get; set; }
|
|
}
|
|
}
|