Beispiel #1
0
 public AntdLosetupStatusModule()
 {
     Get["/losetupstatus"] = x => {
         var model = new PageLosetupStatusModel {
             Components = MachineInfo.GetLosetup()
         };
         return(JsonConvert.SerializeObject(model));
     };
 }