RootUser.cs 237 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.Model.Common.Dtos
  5. {
  6. public class RootUser
  7. {
  8. public string name { get; set; }
  9. public string phone { get; set; }
  10. }
  11. }