using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_DTO.System
|
{
|
public class ActionDTO
|
{
|
public int ActionId { get; set; }
|
public int MenuId { get; set; }
|
public string Text { get; set; }
|
public string Value { get; set; }
|
}
|
}
|