namespace AMREZ.EOP.Contracts.DTOs.Authentications.Register; public sealed class RegisterRequest { public string? Tenant { get; set; } public string Email { get; set; } = default!; public string Password{ get; set; } = default!; public string Name { get; set; } = default!; }