21 lines
341 B
C#
21 lines
341 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace SamplePre.Models.Tables
|
|||
|
|
{
|
|||
|
|
public class config_user_role
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public int id { get; set; }
|
|||
|
|
public string user_id { get; set; }
|
|||
|
|
public string role_id { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|