using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LawFirmContracts.Id;
namespace LawFirmContracts.Models
{
///
/// Оплата
///
public interface IPaymentModel : IId
{
///
/// Дата оплаты
///
DateTime DatePayment { get; }
///
/// Сумма оплаты
///
decimal Sum { get; }
///
/// Id дела
///
int CaseId { get; }
}
}