3 lines
194 B
C#
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); |