| 123456789101112131415161718192021222324252627 |
- using System.Runtime.CompilerServices;
- using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
- using Quadarax.Application.QLiberace.Common.Dtos;
- #if DEBUG
- [assembly: InternalsVisibleTo("qdr.app.qlbrc.base.Tests")]
- [assembly: InternalsVisibleTo("qdr.app.qlbrc.common.Tests")]
- #endif
- namespace Quadarax.Application.QLiberace.Base.Dtos
- {
- public class UserRDto : QlbrcDtoTrackedWithId, IStructUser
- {
- public string LoginName { get; set; } = null!;
- public bool IsLocked { get; set; }
- }
- public class UserWDto : QlbrcDtoWithoutId, IStructUser
- {
- public string LoginName { get; set; } = null!;
- public bool IsLocked { get; set; }
- }
- public class UserDDto : QlbrcDtoWithId
- {
- }
- }
|