Files
Backend-Api/Shared.Contracts/PmUser/Commands/CreatePmUserDto.cs
2025-12-13 20:04:57 +03:30

3 lines
194 B
C#

namespace Shared.Contracts.PmUser.Commands;
public record CreatePmUserDto(string FullName, string UserName, string Password, string Mobile, string? Email, long? AccountId, List<long> Roles);