25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

15 satır
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.