Files
work-club-manager/backend/WorkClub.Application/Clubs/DTOs/ClubListDto.cs

9 lines
164 B
C#
Raw Normal View History

namespace WorkClub.Application.Clubs.DTOs;
public record ClubListDto(
Guid Id,
string Name,
string SportType,
int MemberCount,
Guid TenantId);