using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SchoolDataModels.Models { /// /// Оплата /// public interface IPaymentModel : IId { /// /// Оплаченная сумма /// public int PaySum { get; } /// /// Дата платежа /// public DateTime? DateOfPayment { get; } /// /// Id занятия /// public int CircleLessonId { get; } /// /// Остатки /// public int Remains { get; } } }