fix: make optional

This commit is contained in:
Methapon2001 2024-06-24 14:17:17 +07:00
parent 09cf32d3c7
commit bf5d72a43d

View file

@ -41,8 +41,8 @@ type ServiceCreate = {
};
type ServiceUpdate = {
name: string;
detail: string;
name?: string;
detail?: string;
attributes?: {
[key: string]: any;
};