Files

8 lines
175 B
C#
Raw Permalink Normal View History

namespace TimetableDesigner.Backend.Services.Authentication.DTO.WebAPI;
public record AuthPasswordRequest
(
string Email,
string Password,
bool RememberMe
);