Files
TimetableDesigner.Backend.S…/TimetableDesigner.Backend.Services.Authentication.DTO.WebAPI/AuthPasswordRequest.cs

8 lines
175 B
C#
Raw Normal View History

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