Initial MRP foundation scaffold

This commit is contained in:
2026-03-14 14:44:40 -05:00
commit ee833ed074
77 changed files with 10218 additions and 0 deletions

11
shared/src/files/types.ts Normal file
View File

@@ -0,0 +1,11 @@
export interface FileAttachmentDto {
id: string;
originalName: string;
mimeType: string;
sizeBytes: number;
relativePath: string;
ownerType: string;
ownerId: string;
createdAt: string;
}