RootUser.cs 287 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Model.Core.Dtos
  5. {
  6. public class RootUser
  7. {
  8. public string NickName { get; set; }
  9. public string TeamModelId { get; set; }
  10. public string Phone { get; set; }
  11. }
  12. }