mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-05 05:23:57 +00:00
6 lines
161 B
C#
6 lines
161 B
C#
namespace CleanArchitecture.Application.ViewModels.Users;
|
|
|
|
public sealed record CreateUserViewModel(
|
|
string Email,
|
|
string Surname,
|
|
string GivenName); |