generated from egmont11/ASP.Net-Core-MVC-Template
9 lines
188 B
C#
9 lines
188 B
C#
namespace Eshop.Application.Auth;
|
|
|
|
public sealed record UserDataExportDto(
|
|
string Id,
|
|
string UserName,
|
|
string Email,
|
|
IReadOnlyList<string> Roles,
|
|
DateTime ExportDate);
|