Advertisement
Guest User

Pokemon.cs

a guest
Mar 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Linq;
  5. using System.Web;
  6.  
  7. namespace WebApplication1.Models
  8. {
  9. [Table("Pokemon")]
  10. public class Pokemon
  11. {
  12. public int ID { get; set; }
  13. public string Name { get; set; }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement