예제 #1
0
 /// <inheritdoc/>
 public override string ToString()
 {
     return(MessagePackFormatter.ToString(new
     {
         id = this.Id,
     }));
 }
예제 #2
0
 /// <inheritdoc/>
 public override string ToString()
 {
     return(MessagePackFormatter.ToString(new
     {
         id = this.Id,
         error = new
         {
             code = this.Error?.Code,
             message = this.Error?.Message,
         },
     }));
 }