Add remaining project files

This commit is contained in:
Marco Baldwin
2026-07-23 18:21:43 -07:00
parent c12d8ac35d
commit 6e15e89a9d
453 changed files with 64265 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using LiteDB;
using static DeluxeBackend.Enums;
namespace DeluxeBackend.Models
{
public class UnityAsset
{
public required AssetBundleType Target { get; set; }
public required AssetBundleVersion Version { get; set; }
public required string Filename { get; set; }
}
public class UnityAssets
{
[BsonId]
public Guid Id { get; set; }
public List<UnityAsset> Assets { get; set; } = [];
}
}