14 lines
311 B
C#
Raw Normal View History

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<Trucking> Truckings { get; set; } = new List<Trucking>();
}