using System; using System.Collections.Generic; namespace Biskilog_Cloud.Shared.Models; public partial class TblTruckAssignment { public string? OrderId { get; set; } public decimal? Cost { get; set; } public string? TruckId { get; set; } public string? Status { get; set; } public DateTime? DateAssigned { get; set; } public string CountId { get; set; } = null!; public DateTime LastModified { get; set; } }