17 lines
298 B
C#
17 lines
298 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_user_ext : config_user
|
|
{
|
|
|
|
public string all_role_names { get; set; }
|
|
|
|
}
|
|
}
|