Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnml1135 committed Jun 27, 2024
1 parent 6362191 commit cd6f3f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/SIL.Machine.AspNetCore/Models/Outbox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ public record Outbox : IEntity

public int Revision { get; set; }

public string Name { get; set; } = null!;
public int CurrentIndex { get; set; }
public required string Name { get; init; } = null!;
public required int CurrentIndex { get; set; }

public static async Task<Outbox> GetOutboxNextIndexAsync(
IRepository<Outbox> indexRepository,
Expand Down

0 comments on commit cd6f3f0

Please sign in to comment.