2024-05-29 19:26:01 +04:00

28 lines
643 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using BankDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankDataModels.Models.Client
{
// Интерфейс, отвечающий за получение наличных по карте
public interface IDebitingModel : IId
{
int CardId { get; }
// Сумма снятия с карты
int Sum { get; }
// Дата открытия заявки
DateTime DateOpen { get; }
// Дата снятия денег
DateTime? DateClose { get; }
// Статус заявки
StatusEnum Status { get; }
}
}