using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolDataModels.Models { /// /// Кружок /// public interface ICircleModel : IId { /// /// Дата начала /// public DateTime DateStart { get;} /// /// Id клиента /// public int ClientId { get;} } }