using OnlineMetodist.API.Models; using System.Text.Json; namespace OnlineMetodist.API.Models.TypeEvent { //проведение мероприятия public class Holding { public string Name { get; set; } public string FormOfEvent { get; set; } public string Location { get; set; } public string Status { get; set; } public string Result { get; set; } //public string SpecificationsInJSON { // get // { // return JsonSerializer.Serialize(this); // } //} //public bool[]? Document { get; set; } } }