Files
2026-07-16 18:33:05 +02:00

9 lines
188 B
C#

namespace Eshop.Application.Auth;
public sealed record UserDataExportDto(
string Id,
string UserName,
string Email,
IReadOnlyList<string> Roles,
DateTime ExportDate);