/* Options:
Date: 2025-01-08 03:15:17
Version: 8.53
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://blazordiffusion.com
//GlobalNamespace:
//MakePropertiesOptional: False
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddImplicitVersion:
//AddDescriptionAsComments: True
IncludeTypes: DeleteArtifactCommentVote.*
//ExcludeTypes:
//DefaultImports:
*/
export interface IReturnVoid
{
createResponse(): void;
}
export interface IDeleteDb
{
}
export class ArtifactCommentVote
{
public id: number;
// @References("typeof(BlazorDiffusion.ServiceModel.ArtifactComment)")
public artifactCommentId: number;
public appUserId: number;
public vote: number;
public createdDate: string;
public constructor(init?: Partial) { (Object as any).assign(this, init); }
}
// @ValidateRequest(Validator="IsAuthenticated")
export class DeleteArtifactCommentVote implements IReturnVoid, IDeleteDb
{
public artifactCommentId: number;
public constructor(init?: Partial) { (Object as any).assign(this, init); }
public getTypeName() { return 'DeleteArtifactCommentVote'; }
public getMethod() { return 'DELETE'; }
public createResponse() {}
}