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