Add folders

This commit is contained in:
Josh-Heaps
2025-10-21 16:49:41 -06:00
parent 4b68886252
commit 379bbb604e
17 changed files with 1739 additions and 30 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace Media.JoshHeaps.Net.Models;
public class Folder
{
public long Id { get; set; }
public long UserId { get; set; }
public string Name { get; set; } = string.Empty;
public long? ParentFolderId { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}
+1
View File
@@ -12,6 +12,7 @@ public class UserMedia
public int? Height { get; set; }
public string? Description { get; set; }
public bool IsEncrypted { get; set; } = true;
public long? FolderId { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}