15 lines
241 B
C#
15 lines
241 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BWPMModels
|
|
{
|
|
public class AspNetUserRoles
|
|
{
|
|
public string UserId { get; set; } = "";
|
|
|
|
public string RoleId { get; set; } = "";
|
|
|
|
}
|
|
}
|