CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDataModels/Models/IСardModel.cs

22 lines
337 B
C#
Raw Normal View History

2023-04-01 08:09:51 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
public interface ICardModel : IId
{
int ClientID { get; }
int AccountId { get; }
string Number { get; }
string CVC { get; }
DateTime Period { get; }
}
}