All checks were successful
Jenkins Production Deployment
Co-authored-by: Patrick Mueller <patrick@mueller-patrick.tech> Reviewed-on: #16 Co-authored-by: Patrick Müller <patrick@plutodev.de> Co-committed-by: Patrick Müller <patrick@plutodev.de>
7 lines
122 B
TypeScript
7 lines
122 B
TypeScript
export interface RouteComment {
|
|
comment_id: number;
|
|
route_id: string;
|
|
comment: string;
|
|
timestamp: Date;
|
|
}
|