You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
359 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace Txgy.EWS.Server.Models
{
[Table("user_role")]
public class UserRole
{
[Column("user_id")]
public int UserId { get; set; }
[Column("role_id")]
public int RoleId { get; set; }
}
}