plutoapi-v2/src/models/climbing-route-rating/route_comments/RouteComment.interface.ts
Patrick Müller 25a66b060c
All checks were successful
Jenkins Production Deployment
API-37: Adding endpoints for climbing route rating app (!16)
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>
2022-01-08 22:21:19 +00:00

7 lines
122 B
TypeScript

export interface RouteComment {
comment_id: number;
route_id: string;
comment: string;
timestamp: Date;
}