2 instantiations of InteractionInput
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\ResourceService.cs (2)
9246private static readonly pb::MessageParser<InteractionInput> _parser = new pb::MessageParser<InteractionInput>(() => new InteractionInput()); 9287return new InteractionInput(this);
20 references to InteractionInput
Aspire.Dashboard (20)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\ResourceService.cs (16)
189new pbr::GeneratedClrTypeInfo(typeof(global::Aspire.ResourceService.Proto.V1.InteractionInput), global::Aspire.ResourceService.Proto.V1.InteractionInput.Parser, new[]{ "Label", "Placeholder", "InputType", "Required", "Options", "Value" }, null, null, null, new pbr::GeneratedClrTypeInfo[] { null, }) 9100private static readonly pb::FieldCodec<global::Aspire.ResourceService.Proto.V1.InteractionInput> _repeated_inputItems_codec 9101= pb::FieldCodec.ForMessage(10, global::Aspire.ResourceService.Proto.V1.InteractionInput.Parser); 9102private readonly pbc::RepeatedField<global::Aspire.ResourceService.Proto.V1.InteractionInput> inputItems_ = new pbc::RepeatedField<global::Aspire.ResourceService.Proto.V1.InteractionInput>(); 9105public pbc::RepeatedField<global::Aspire.ResourceService.Proto.V1.InteractionInput> InputItems { 9241public sealed partial class InteractionInput : pb::IMessage<InteractionInput> 9246private static readonly pb::MessageParser<InteractionInput> _parser = new pb::MessageParser<InteractionInput>(() => new InteractionInput()); 9250public static pb::MessageParser<InteractionInput> Parser { get { return _parser; } } 9274public InteractionInput(InteractionInput other) : this() { 9286public InteractionInput Clone() { 9364return Equals(other as InteractionInput); 9369public bool Equals(InteractionInput other) { 9499public void MergeFrom(InteractionInput other) {
Components\Dialogs\InteractionsInputDialog.razor.cs (3)
36foreach (var inputModel in Content.Inputs) 52if (field.Model is InteractionInput inputModel) 63private static bool IsMissingRequiredValue(InteractionInput inputModel)
Model\InteractionsInputsDialogViewModel.cs (1)
11public required List<InteractionInput> Inputs { get; init; }