Internship.cs 218 B

1234567891011
  1. using System.Text.Json;
  2. namespace OnlineMetodist.API.Models.TypeEvent
  3. {
  4. //стажировка
  5. public class Internship
  6. {
  7. public string Location { get; set; }
  8. public double QuantityOfHours { get; set; }
  9. }
  10. }