15 lines
304 B
C#
15 lines
304 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Fab2ApprovalSystem.Models
|
|
{
|
|
public class UserSubRoles
|
|
{
|
|
public int SubRoleID { get; set; }
|
|
public string RoleName { get; set; }
|
|
public string SubRoleName { get; set; }
|
|
}
|
|
}
|