refactor(nestjs): validation schema dtos

This commit is contained in:
Ahmed Bouhuolia
2025-05-25 23:39:54 +02:00
parent 2b3f98d8fe
commit 24bf3dd06d
24 changed files with 247 additions and 135 deletions

View File

@@ -1,6 +1,6 @@
import { TenantModel } from "@/modules/System/models/TenantModel";
import { TenantBaseModel } from '@/modules/System/models/TenantBaseModel';
export class Currency extends TenantModel {
export class Currency extends TenantBaseModel {
public readonly currencySign: string;
public readonly currencyName: string;
public readonly currencyCode: string;
@@ -22,4 +22,4 @@ export class Currency extends TenantModel {
static get resourceable() {
return true;
}
}
}