Process non-nullable warnings
This commit is contained in:
parent
5fda977d63
commit
db2d9b5e8c
|
|
@ -16,7 +16,7 @@ namespace ElsaDashboard.Shared.Rpc
|
|||
VersionOptions = versionOptions;
|
||||
}
|
||||
|
||||
[ProtoMember(1)] public string WorkflowDefinitionId { get; set; }
|
||||
[ProtoMember(1)] public string WorkflowDefinitionId { get; set; } = default!;
|
||||
[ProtoMember(2)] public VersionOptions? VersionOptions { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
@ -14,6 +14,6 @@ namespace ElsaDashboard.Shared.Rpc
|
|||
WorkflowDefinitionVersionId = workflowDefinitionVersionId;
|
||||
}
|
||||
|
||||
[ProtoMember(1)] public string WorkflowDefinitionVersionId { get; set; }
|
||||
[ProtoMember(1)] public string WorkflowDefinitionVersionId { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
|
|
@ -15,6 +15,6 @@ namespace ElsaDashboard.Shared.Rpc
|
|||
WorkflowInstanceId = workflowInstanceId;
|
||||
}
|
||||
|
||||
[ProtoMember(1)] public string WorkflowInstanceId { get; set; }
|
||||
[ProtoMember(1)] public string WorkflowInstanceId { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
|
|
@ -15,6 +15,6 @@ namespace ElsaDashboard.Shared.Rpc
|
|||
WorkflowInstanceId = workflowInstanceId;
|
||||
}
|
||||
|
||||
[ProtoMember(1)] public string WorkflowInstanceId { get; set; }
|
||||
[ProtoMember(1)] public string WorkflowInstanceId { get; set; } = default!;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue