Workout.cs 441 B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace ApiMobileBelov.ModelBase
  4. {
  5. [Table("Workout")]
  6. public class Workout
  7. {
  8. [Key]
  9. public int IdWorkout { get; set; }
  10. public string? Name { get; set; }
  11. public int DurationInSec { get; set; }
  12. public string? Description { get; set; }
  13. public string? VideoURL { get; set; }
  14. }
  15. }