8 lines
148 B
C#
8 lines
148 B
C#
|
|
namespace WorkClub.Application.Members.DTOs;
|
||
|
|
|
||
|
|
public record MemberListDto(
|
||
|
|
Guid Id,
|
||
|
|
string DisplayName,
|
||
|
|
string Email,
|
||
|
|
string Role);
|