12345678910111213141516171819 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace androidAPI.ModelBase
- {[Table("InformDog")]
- public class Inform
- {
- [Key]
- public int idF { get; set; }
- //[Column("nameDog")]
- public string? nameDog { get; set; }
- //[Column("ageDog")]
- public string? ageDog { get; set; }
-
- public int idBreed { get; set; }
- public int idGender { get; set; }
- }
- }
|