10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
export declare class CreateGiftDto {
|
|
name: string;
|
|
description?: string;
|
|
imageUrl?: string;
|
|
price?: number;
|
|
experience?: boolean;
|
|
ownerId?: string;
|
|
metadata?: Record<string, any>;
|
|
}
|
|
//# sourceMappingURL=create-gift.dto.d.ts.map
|