Skip to content

Commit

Permalink
Standardize required attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
schmittjoseph committed Jul 1, 2024
1 parent 2c977a5 commit a65e1fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ public bool IsStoppable
public ExecutionResult<EgressResult> ExecutionResult { get; set; }
#nullable restore

public Models.OperationState State { get; set; }
public required Models.OperationState State { get; set; }

public required EgressRequest EgressRequest { get; set; }

public DateTime CreatedDateTime { get; } = DateTime.UtcNow;

public Guid OperationId { get; set; }
public required Guid OperationId { get; set; }

public required ISet<string> Tags { get; set; }

Expand Down

0 comments on commit a65e1fe

Please sign in to comment.