17 lines
292 B
C#
17 lines
292 B
C#
using SamplePre.Models.Tables;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SamplePre.Models.Ext
|
|
{
|
|
public class config_role_ext : config_role
|
|
{
|
|
|
|
public bool IsSelected { get; set; }
|
|
|
|
}
|
|
}
|