fix: localize usage and salary insights
CI and Deploy / test (push) Successful in 2m40s
CI and Deploy / deploy (push) Successful in 56s

This commit is contained in:
cesnimda
2026-07-31 00:17:33 +02:00
parent 235d22c059
commit 6ed56fd493
5 changed files with 49 additions and 13 deletions
+2 -2
View File
@@ -10,8 +10,8 @@ public class JobApplication
public int CompanyId { get; set; }
public Company Company { get; set; } = null!;
// The opportunity this application is for. Nullable and unused for now: Phase 0 added the
// Job entity additively and JobApplication still owns the opportunity columns below.
// The opportunity this application is for. Nullable for legacy rows; new creates and edits
// keep Job synchronized while JobApplication remains the current read model.
// See Models/Job.cs and docs/decisions/ADR-002-job-application-model.md.
public int? JobId { get; set; }
public Job? Job { get; set; }