announcement list and create announcement and ...

This commit is contained in:
hamid zarghami
2025-01-30 10:35:27 +03:30
parent 018737df4e
commit bc39fd5042
11 changed files with 405 additions and 114 deletions
+9
View File
@@ -0,0 +1,9 @@
export type CreateAnnouncementType = {
title: string;
content: string;
publishAt: string;
isPublic: boolean;
isImportant: boolean;
serviceId: string;
groupIds: string[];
};