complated

This commit is contained in:
Samandar Turgunboyev
2026-02-17 10:46:57 +05:00
parent 754f11804a
commit d747c72c8d
71 changed files with 917 additions and 397 deletions

View File

@@ -18,16 +18,15 @@ export interface AnnouncementListBodyRes {
title: string;
description: string;
total_view_count: number;
files: [
{
file: string;
}
];
files: {
id: number;
file: string;
}[];
status: 'pending' | 'paid' | 'verified' | 'canceled';
types: {
id: number;
name: string;
icon_name: string;
icon_name: string | null;
}[];
created_at: string;
}