15 lines
336 B
TypeScript
15 lines
336 B
TypeScript
import { TimeRange } from "@/components/index.types"
|
|
|
|
|
|
export interface PublishBallFormData {
|
|
title: string
|
|
timeRange: TimeRange
|
|
fee: string
|
|
location: string
|
|
gameplay: string
|
|
minParticipants: number
|
|
maxParticipants: number
|
|
ntpLevel: number[]
|
|
additionalRequirements: string
|
|
autoDegrade: boolean
|
|
} |