29 lines
689 B
C#
29 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ZooDataModels.Models
|
|
{
|
|
public interface IPaymentModel : IId
|
|
{
|
|
/// <summary>
|
|
/// Оплаченная сумма
|
|
/// </summary>
|
|
public double PaySum { get; set; }
|
|
/// <summary>
|
|
/// Дата платежа
|
|
/// </summary>
|
|
public DateTime? DateOfPayment { get; }
|
|
/// <summary>
|
|
/// Id заповедника маршрута
|
|
/// </summary>
|
|
public int RouteReserveId { get; set; }
|
|
/// <summary>
|
|
/// Остатки
|
|
/// </summary>
|
|
public int Remains { get; }
|
|
}
|
|
}
|