Files
moadiran/Shared/DTOs/Authentication.cs

9 lines
163 B
C#
Raw Normal View History

2024-04-17 15:49:34 +03:30
namespace Shared.DTOs
{
public class Authentication
{
public string Username { get; set; }
public string Password { get; set; }
}
}