Skip to content

Commit

Permalink
make audit entry version nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
craigedmunds committed Dec 17, 2024
1 parent 1edd5f9 commit 483ce25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Btms.Model/Auditing/AuditEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class AuditEntry
public const string CreatedByCds = "Cds";
public const string CreatedByGvms = "Gvms";
public string Id { get; set; } = default!;
public int Version { get; set; }
public int? Version { get; set; }

public string CreatedBy { get; set; } = default!;

Expand Down

0 comments on commit 483ce25

Please sign in to comment.