Blockchains.razor.cs 456 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Threading.Tasks;
  3. using System.Net;
  4. using System.IO;
  5. using Microsoft.AspNetCore.Components;
  6. namespace HyperCube.Pages
  7. {
  8. public partial class Blockchains
  9. {
  10. [Parameter]
  11. public int Smart { get; set; }
  12. public string answer;
  13. //public partial class Blocchains
  14. //{
  15. // [Parameter]
  16. // public string Smart { get; set; }
  17. //}
  18. }
  19. }