Files
Hushian/Common/Dtos/Auth/AuthFromCompanySideDto.cs

16 lines
346 B
C#
Raw Normal View History

2025-06-28 15:31:07 +03:30
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Common.Dtos.Auth
{
public class AuthFromCompanySideDto
{
// username=wxper --- mobile=company
public string UserNameORMobile { get; set; }
public string PassWord { get; set; }
}
}