summaryrefslogtreecommitdiff
path: root/DTOs/AuthenticationCredentials.cs
blob: 65bc514b82fa587f6695f5a70e3192b2d4b76be5 (plain)
1
2
3
4
5
6
namespace LibraryAPI.DTOs {
    public class AuthenticationCredentials {
	public string? Email { get; set; }
	public string? Password { get; set; }
    }
}