namespace Harmonia.Core.Library; public class Location { public int LocationId { get; set; } public int Type { get; set; } public required string Name { get; set; } public virtual ICollection Folders { get; set; } = []; }