2022-09-12 17:57:37 +03:00
|
|
|
using MapTo;
|
|
|
|
|
2022-09-27 20:12:13 +03:00
|
|
|
namespace BlueWest.Data.Application.Users
|
2022-09-12 17:57:37 +03:00
|
|
|
{
|
|
|
|
[MapFrom(typeof(ApplicationUserRole))]
|
|
|
|
public partial class ApplicationUserRoleUnique
|
|
|
|
{
|
|
|
|
public string UserId { get; set; }
|
|
|
|
|
|
|
|
public string RoleId { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|