NormalResponse.cs 290 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace AipGateway.Web.Models
  6. {
  7. public class NormalResponse
  8. {
  9. public string id { get; set; }
  10. public string name { get; set; }
  11. public string desc { get; set; }
  12. }
  13. }