mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
10 lines
202 B
C#
10 lines
202 B
C#
using System;
|
|
|
|
namespace CleanArchitecture.Shared.Users;
|
|
|
|
public sealed record UserViewModel(
|
|
Guid Id,
|
|
string Email,
|
|
string FirstName,
|
|
string LastName,
|
|
DateTimeOffset? DeletedAt); |