Files

9 lines
164 B
C#
Raw Permalink Normal View History

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