File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
com.playeveryware.eos/Runtime/Core/Config Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 2222
2323namespace PlayEveryWare . EpicOnlineServices
2424{
25- using PlayEveryWare . EpicOnlineServices . Utility ;
25+ using Utility ;
2626 using System ;
2727
2828 public struct Deployment : IEquatable < Deployment >
2929 {
30+ /// <summary>
31+ /// The SandboxId for the deployment.
32+ /// </summary>
3033 public SandboxId SandboxId ;
3134
35+ /// <summary>
36+ /// The DeploymentId.
37+ /// </summary>
3238 public Guid DeploymentId ;
3339
3440 /// <summary>
@@ -58,6 +64,11 @@ public override int GetHashCode()
5864 {
5965 return HashUtility . Combine ( SandboxId , DeploymentId ) ;
6066 }
67+
68+ public override string ToString ( )
69+ {
70+ return $ "DeploymentId: { DeploymentId . ToString ( "N" ) . ToLower ( ) } , SandboxId: { SandboxId } ";
71+ }
6172 }
6273
6374}
You can’t perform that action at this time.
0 commit comments