UserDto.cs 335 B

1234567891011
  1. using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
  2. using Quadarax.Application.QLiberace.Common.Dtos;
  3. namespace Quadarax.Application.QLiberace.Base.Dtos
  4. {
  5. public class UserDto : QlbrcDtoTrackedWithId, IStructUser
  6. {
  7. public string LoginName { get; set; }
  8. public bool IsLocked { get; set; }
  9. }
  10. }