using aeqw89.DataKeys; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Beam.Models { internal class LinkCollection(DataKey key, List links) { public DataKey Key { get; set; } = key; public List Links { get; set; } = links; } }