UserInfo.cs 311 B

1234567891011121314151617181920
  1. 
  2. using Newtonsoft.Json;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. namespace Service.ServiceProvider.Contract
  6. {
  7. public class UserInfo
  8. {
  9. public string name;
  10. public int? age;
  11. public List<string> callStack;
  12. }
  13. }