using System.ComponentModel.DataAnnotations; namespace Newsbot.Collector.Domain.Requests; public class UserLoginRequest { [EmailAddress] public string? Email { get; set; } public string? Password { get; set; } }