-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
moveRackEquipment and arrangeRackEquipment mutations added
- Loading branch information
1 parent
4534615
commit 9e536bd
Showing
3 changed files
with
92 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
OpenFTTH.APIGateway/GraphQL/UtilityNetwork/Types/RackEquipmentArrangeMethodEnumType.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using GraphQL.Types; | ||
using OpenFTTH.UtilityGraphService.API.Model.UtilityNetwork; | ||
|
||
namespace OpenFTTH.APIGateway.GraphQL.UtilityNetwork.Types | ||
{ | ||
public class RackEquipmentArrangeMethodEnumType : EnumerationGraphType<RackEquipmentArrangeMethodEnum> | ||
{ | ||
public RackEquipmentArrangeMethodEnumType() | ||
{ | ||
Name = "RackEquipmentArrangeMethodEnum"; | ||
Description = @"How rack terminal equipments should arranged - up/down"; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters