17 lines
407 B
C#
17 lines
407 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Marco.Pms.Model.Utilities
|
|
{
|
|
public class RoleConfiguration
|
|
{
|
|
public string JobRoleName { get; set; }
|
|
public string JobRoleDescription { get; set; }
|
|
public string RoleName { get; set; }
|
|
public string RoleDescription { get; set; }
|
|
}
|
|
}
|