using System; using System.Collections.Generic; namespace help.Models; public partial class TradeNetwork { public int Tradeid { get; set; } public string? Title { get; set; } public virtual ICollection Outlets { get; set; } = new List(); }