You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
468 B

  1. // Copyright (c) .NET Core Community. All rights reserved.
  2. // Licensed under the MIT License. See License.txt in the project root for license information.
  3. namespace DotNetCore.CAP.Dashboard
  4. {
  5. public class NonEscapedString
  6. {
  7. private readonly string _value;
  8. public NonEscapedString(string value)
  9. {
  10. _value = value;
  11. }
  12. public override string ToString()
  13. {
  14. return _value;
  15. }
  16. }
  17. }