Guest User

Untitled

a guest
Mar 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. using System;
  2. using System.ComponentModel.DataAnnotations;
  3.  
  4. namespace Produtos.Models
  5. {
  6. public class Produto
  7. {
  8. [Key]
  9. public long Id { get; set; }
  10. public String Nome { get; set; }
  11. public int Quantidade { get; set; }
  12. public double Valor { get; set; }
  13. }
  14. }
Add Comment
Please, Sign In to add comment