mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 11:02:57 +00:00
7 lines
182 B
C#
7 lines
182 B
C#
namespace CleanArchitecture.Application.ViewModels.Users;
|
|
|
|
public sealed record CreateUserViewModel(
|
|
string Email,
|
|
string Surname,
|
|
string GivenName,
|
|
string Password); |