14 lines
311 B
C#
14 lines
311 B
C#
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>();
|
|
}
|