- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace CallCenterApi.Interface.Models.Input
- {
- public class LoginModel
- {
- public string Username { get; set; }
- public string ExtensionPhone { get; set; }
- public string Password { get; set; }
- }
- }
|