using System; using System.Collections.Generic; namespace EVCB_OCPP.Domain.Models.MainDb; public partial class MachineVersionFile { public int Id { get; set; } public DateTime CreatedOn { get; set; } public string UploadFileId { get; set; } public int Seq { get; set; } public string ChargeBoxId { get; set; } public virtual UploadFile UploadFile { get; set; } }