Hobbies.cs 317 B

123456789101112131415
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace API_development
  4. {
  5. [Table("Hobbies")]
  6. public class Hobbies
  7. {
  8. [Key]
  9. public int idHobbi { get; set; }
  10. [Column("nameHobbi")]
  11. public string name{ get; set; }
  12. }
  13. }