feat: add capacity to kandang

This commit is contained in:
ValdiANS
2025-11-12 13:36:33 +07:00
parent b7a055888b
commit e7d2c3bc13
+1
View File
@@ -8,6 +8,7 @@ export type BaseKandang = {
status: string; status: string;
location: BaseLocation; location: BaseLocation;
pic: BaseUser; pic: BaseUser;
capacity: number;
}; };
export type Kandang = BaseMetadata & BaseKandang; export type Kandang = BaseMetadata & BaseKandang;