MigrationHistory.cs 318 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.MeterValueDb;
  4. public partial class MigrationHistory
  5. {
  6. public string MigrationId { get; set; }
  7. public string ContextKey { get; set; }
  8. public byte[] Model { get; set; }
  9. public string ProductVersion { get; set; }
  10. }