县级监管平台

LoginModel.cs 320B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. namespace CallCenterApi.Interface.Models.Input
  6. {
  7. public class LoginModel
  8. {
  9. public string Username { get; set; }
  10. public string ExtensionPhone { get; set; }
  11. public string Password { get; set; }
  12. }
  13. }