This commit is contained in:
2026-03-10 13:36:45 +03:30
parent 45d48f79dc
commit b379787002
208 changed files with 2328 additions and 2510 deletions
+11
View File
@@ -0,0 +1,11 @@
export interface IPartnerRawResponse {
id: string;
name: string;
code: string;
}
export interface IPartnerResponse extends IPartnerRawResponse {}
export interface IPartnerRequest {
name: string;
code: string;
}