Publication.cs 240 B

123456789101112
  1. using System.Text.Json;
  2. namespace OnlineMetodist.API.Models.TypeEvent
  3. {
  4. //публикация
  5. public class Publication
  6. {
  7. public string Type { get; set; }
  8. public string Name { get; set; }
  9. public string Place { get; set; }
  10. }
  11. }