feat: integration cloudfile

This commit is contained in:
2026-09-06 12:33:38 +07:00
parent c2088f42dc
commit 888dd41dcd
24 changed files with 1148 additions and 28 deletions
+3 -1
View File
@@ -12,8 +12,10 @@ public class Document
public Guid ProjectId { get; set; }
public Guid? ParentId { get; set; }
public string Title { get; set; } = string.Empty;
public string? Content { get; set; }
public DocumentType Type { get; set; } = DocumentType.Document;
public string? ContentHash { get; set; }
public long? ContentSize { get; set; }
public DateTime? UpdatedContentAt { get; set; }
public Guid CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
public Guid? UpdatedBy { get; set; }