Inform.cs 524 B

12345678910111213141516171819
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace androidAPI.ModelBase
  4. {[Table("InformDog")]
  5. public class Inform
  6. {
  7. [Key]
  8. public int idF { get; set; }
  9. //[Column("nameDog")]
  10. public string? nameDog { get; set; }
  11. //[Column("ageDog")]
  12. public string? ageDog { get; set; }
  13. public int idBreed { get; set; }
  14. public int idGender { get; set; }
  15. }
  16. }