mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
23 lines
399 B
TypeScript
23 lines
399 B
TypeScript
import type { Item } from './Item'
|
|
import type { Tag } from './Tag'
|
|
|
|
export interface FormState {
|
|
color: string
|
|
id: string
|
|
group_type: string
|
|
status: string
|
|
name: string
|
|
subname: string
|
|
text: string
|
|
contact: string
|
|
telephone: string
|
|
next_appointment: string
|
|
image: string
|
|
marker_icon: string
|
|
offers: Tag[]
|
|
needs: Tag[]
|
|
relations: Item[]
|
|
start: string
|
|
end: string
|
|
}
|