13 lines
248 B
TypeScript
13 lines
248 B
TypeScript
import type { Team } from '../../domain/entities/Team';
|
|
|
|
export interface CreateTeamCommandDTO {
|
|
name: string;
|
|
tag: string;
|
|
description: string;
|
|
ownerId: string;
|
|
leagues: string[];
|
|
}
|
|
|
|
export interface CreateTeamResultDTO {
|
|
team: Team;
|
|
} |