Added initial audio library logic.

This commit is contained in:
2025-02-27 00:46:36 -05:00
parent c1a7d23096
commit e2af19d9bb
7 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
namespace Harmonia.Core.Library;
public class Folder
{
public int FolderId { get; set; }
public int? ParentFolderId { get; set; }
public Folder? ParentFolder { get; set; }
public required string Name { get; set; }
public int LocationId { get; set; }
public required Location Location { get; set; }
public virtual ICollection<Song> Songs { get; set; } = [];
}