export interface CreateSprint {
  name: string;
  startDate?: string;
  endDate?: string;
  originBoardId: number;
  goal?: string;
}
