- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MeterValueDb;
- public partial class MigrationHistory
- {
- public string MigrationId { get; set; }
- public string ContextKey { get; set; }
- public byte[] Model { get; set; }
- public string ProductVersion { get; set; }
- }
|