Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions ansys/api/geometry/v0/unsupported.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright 2023, ANSYS Inc. Unauthorized use, distribution or duplication is prohibited.
syntax = "proto3";

package ansys.api.geometry.v0.unsupported;

import "ansys/api/dbu/v0/dbumodels.proto";

option csharp_namespace = "Ansys.Api.Geometry.V0.Unsupported";

service Unsupported {

// Turns the beep sound on or off
rpc SetSoundEnabled(SoundEnabledRequest) returns(ansys.api.dbu.v0.RequestResult);
}

message SoundEnabledRequest {
bool enabled = 1;
}