13 lines
234 B
C#
13 lines
234 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace iMES.Entity.DomainModels
|
|
{
|
|
public class RoleAuthor
|
|
{
|
|
public int menuId { get; set; }
|
|
public string actions { get; set; }
|
|
}
|
|
}
|