using System; using System.Collections.Generic; namespace TransportCompanyDatabaseImplements.Models; public partial class Cargo { public int Id { get; set; } public string TypeCargo { get; set; } = null!; public virtual ICollection Truckings { get; set; } = new List(); }