/* Options: Date: 2024-04-28 19:06:37 Version: 8.13 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://techstacks.io //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetUserPostCommentVotes.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface IGet { } export class GetUserPostCommentVotesResponse { public postId: number; public upVotedCommentIds: number[]; public downVotedCommentIds: number[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/user/comments/votes") export class GetUserPostCommentVotes implements IReturn, IGet { public postId: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetUserPostCommentVotes'; } public getMethod() { return 'GET'; } public createResponse() { return new GetUserPostCommentVotesResponse(); } }