12 lines
201 B
C#
12 lines
201 B
C#
namespace LaaProduction.Personalization.Models
|
|
{
|
|
using System;
|
|
|
|
public class EmployeeRole
|
|
{
|
|
public int EmployeeId { get; set; }
|
|
|
|
public string Role { get; set; }
|
|
}
|
|
}
|