Holding.cs 536 B

1234567891011121314151617181920212223
  1. using OnlineMetodist.API.Models;
  2. using System.Text.Json;
  3. namespace OnlineMetodist.API.Models.TypeEvent
  4. {
  5. //проведение мероприятия
  6. public class Holding
  7. {
  8. public string Name { get; set; }
  9. public string FormOfEvent { get; set; }
  10. public string Location { get; set; }
  11. public string Status { get; set; }
  12. public string Result { get; set; }
  13. //public string SpecificationsInJSON {
  14. // get
  15. // {
  16. // return JsonSerializer.Serialize(this);
  17. // }
  18. //}
  19. //public bool[]? Document { get; set; }
  20. }
  21. }