AtomicFunc.cs 285 B

123456789101112131415
  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace IPADDemo.Model
  8. {
  9. public class AtomicFunc
  10. {
  11. [JsonProperty("enable")]
  12. public int Enable { get; set; }
  13. }
  14. }