mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
12 lines
266 B
C#
12 lines
266 B
C#
using System;
|
|
using CleanArchitecture.Domain.Enums;
|
|
|
|
namespace CleanArchitecture.Application.ViewModels.Users;
|
|
|
|
public sealed record UpdateUserViewModel(
|
|
Guid Id,
|
|
string Email,
|
|
string FirstName,
|
|
string LastName,
|
|
UserRole Role,
|
|
Guid TenantId); |