11 lines
227 B
C#
11 lines
227 B
C#
|
|
namespace WorkClub.Application.Members.DTOs;
|
||
|
|
|
||
|
|
public record MemberDetailDto(
|
||
|
|
Guid Id,
|
||
|
|
string DisplayName,
|
||
|
|
string Email,
|
||
|
|
string Role,
|
||
|
|
Guid ClubId,
|
||
|
|
DateTimeOffset CreatedAt,
|
||
|
|
DateTimeOffset UpdatedAt);
|