using System; using System.Collections.Generic; namespace demo_trade.Data.RemoteData.Entity; public partial class Productunit { public int UnitId { get; set; } public string UnitName { get; set; } = null!; public virtual ICollection Products { get; set; } = new List(); }