16 lines
364 B
C#
16 lines
364 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mini.Web.WebHelper.Models
|
|
{
|
|
public class ToolBarBtn
|
|
{
|
|
public string RightId { get; set; }
|
|
public int ToolBarId { get; set; }
|
|
public string ToolBarName { get; set; }
|
|
public string ToolBarCode { get; set; }
|
|
}
|
|
}
|