Api/Brizco.Domain/Dtos/SmallDtos/ComplexUserRoleSDto.cs

14 lines
327 B
C#
Raw Normal View History

2023-10-13 16:25:34 +03:30
using Brizco.Domain.Entities.Complex;
namespace Brizco.Domain.Dtos.SmallDtos;
public class ComplexUserRoleSDto : BaseDto<ComplexUserRoleSDto,ComplexUserRole>
{
public Guid RoleId { get; set; }
public Guid ComplexUserId { get; set; }
public Guid UserId { get; set; }
public Guid ComplexId { get; set; }
}