UsersHobbies.cs 396 B

1234567891011121314151617
  1. using System.ComponentModel.DataAnnotations.Schema;
  2. using System.ComponentModel.DataAnnotations;
  3. namespace API_development
  4. {
  5. [Table ("UsersHobbies")]
  6. public class UsersHobbies
  7. {
  8. [Key]
  9. public int idRecord { get; set; }
  10. [Column("idHobbi")]
  11. public int idHobbi { get; set; }
  12. [Column("idUsers")]
  13. public int idUser { get; set; }
  14. }
  15. }