ExerciseName.cs 299 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.Text;
  5. namespace WpfApp
  6. {
  7. [Table("ExerciseName")]
  8. public class ExerciseName
  9. {
  10. public int Id { get; set; }
  11. public string ExerciseName { get; set; }
  12. }
  13. }