Advertisement
mtsys

Untitled

Mar 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.53 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.Linq;
  5. using System.Web;
  6.  
  7. namespace MTSys.WebApp.Dominio.DTO
  8. {
  9.     public class UsuarioLoginDTO
  10.     {
  11.         [Display(Name = "CPF/CNPJ")]
  12.         public string CPFCNPJ { get; set; }
  13.  
  14.         [Display(Name = "Identificador")]
  15.         public string Login { get; set; }
  16.  
  17.         [Display(Name="E-mail")]
  18.         public string Email { get; set; }
  19.  
  20.         [Obrigatorio]
  21.         public string Senha { get; set; }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement