Guest User

Untitled

a guest
Jan 22nd, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. using NotificationManager.Infrastructure;
  2.  
  3. namespace NotificationManager.Models
  4. {
  5. public class Customer : IEntity<int>
  6. {
  7. public int Id { get; set; }
  8. public string Nome { get; set; }
  9. public string Cognome { get; set; }
  10. public int Matricola { get; set; }
  11. public int Status { get; set; }
  12. }
  13. }
Add Comment
Please, Sign In to add comment