25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
576B

  1. namespace Campaign_Tracker.Server.LegacyData.Schema;
  2. /// <summary>
  3. /// The approved snapshot of the legacy Access schema captured at initialization
  4. /// (Story 1.7 AC #1). The compatibility check compares the live schema against
  5. /// this baseline and reports any structural drift.
  6. ///
  7. /// Sourced from <c>Initial Documents/Access_Schema.txt</c> at application startup
  8. /// via <see cref="LegacySchemaBaselineParser"/>.
  9. /// </summary>
  10. public sealed record LegacySchemaBaseline(
  11. IReadOnlyList<LegacyTableDefinition> Tables,
  12. string Source,
  13. DateTimeOffset CapturedAt);

Powered by TurnKey Linux.