Changeset b373fea for ChapterX.Application/Auth/LoginRequest.cs
- Timestamp:
- 06/23/26 15:20:39 (13 days ago)
- Branches:
- main
- Children:
- 0b502c2
- Parents:
- d300631
- File:
-
- 1 edited
-
ChapterX.Application/Auth/LoginRequest.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ChapterX.Application/Auth/LoginRequest.cs
rd300631 rb373fea 1 1 using MediatR; 2 using System.ComponentModel.DataAnnotations; 2 3 3 4 namespace ChapterX.Application.Auth 4 5 { 5 public record LoginRequest(string Email, string Password) : IRequest<LoginResponse>; 6 public record LoginRequest( 7 [Required][EmailAddress][MaxLength(200)] string Email, 8 [Required][MaxLength(128)] string Password 9 ) : IRequest<LoginResponse>; 6 10 }
Note:
See TracChangeset
for help on using the changeset viewer.
