Advertisement
Guest User

Exemplo POCO

a guest
Sep 21st, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1. public class School
  2. {
  3.     public Guid Id { get; set; }
  4.     public string Name { get; set; }
  5.     public string Address { get; set; }
  6.     public string ZipCode { get; set; }
  7.     public string City { get; set; }
  8.     public string State { get; set; }
  9.     public string Phone { get; set; }
  10.     public string Fax { get; set; }
  11.     public string Site { get; set; }
  12.     public string Cnpj { get; set; }
  13.     public string StateAuthorizationNumber { get; set; }
  14.     public string OwnerName { get; set; }
  15.     public string OwnerCpf { get; set; }
  16.     public string OwnerEmail { get; set; }
  17.     public string OwnerPhone { get; set; }
  18.     public bool IsActive { get; set; }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement