13 lines
233 B
C#
Raw Permalink Normal View History

2025-06-06 16:00:39 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace VOL.Entity.DomainModels
{
public class RoleAuthor
{
public int menuId { get; set; }
public string actions { get; set; }
}
}