DepartmentProject/DepartmentPortal/Security/SecurityContract/BindingModels/UserRoleBindingModels.cs

29 lines
764 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using CoreModels.ModelsSecurity;
using System;
using System.ComponentModel.DataAnnotations;
using ToolsModule.ManagmentEntity;
namespace SecurityContract.BindingModels
{
/// <summary>
/// Получение связи пользователя с ролью
/// </summary>
public class UserRoleGetBindingModel : GetBindingModel
{
public Guid? UserId { get; set; }
public Guid? RoleId { get; set; }
}
/// <summary>
/// Сохранение связи пользователя с ролью
/// </summary>
public class UserRoleSetBindingModel : SetBindingModel, IUserRoleModel
{
[Required(ErrorMessage = "required")]
public Guid UserId { get; set; }
[Required(ErrorMessage = "required")]
public Guid RoleId { get; set; }
}
}