feat: add favorite functionality for goods; implement favorite button and service integration

This commit is contained in:
2026-05-20 11:55:30 +03:30
parent 2e1ad77946
commit c5e1fab09b
12 changed files with 185 additions and 58 deletions
+1
View File
@@ -17,6 +17,7 @@ export interface IGoodRawResponse {
is_default_guild_good: boolean;
created_at: string;
updated_at: string;
is_favorite: boolean;
}
export interface IGoodResponse extends IGoodRawResponse {}