CategoryAndTraining.cs 381 B

1234567891011121314
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace ApiMobileBelov.ModelBase
  4. {
  5. [Table("CategoryAngTraining")]
  6. public class CategoryAndTraining
  7. {
  8. [Key]
  9. public int IdCategoryAndTraining { get; set; }
  10. public int IdCategory { get; set; }
  11. public int IdTraining { get; set; }
  12. }
  13. }