PIbd-21_Zaharchenko_M.I._Pi.../BankExecutor/AbstractBankDataModels/IId.cs

14 lines
218 B
C#
Raw Normal View History

2023-02-12 20:11:02 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankExecutorDataModels
{
public interface IId
{
int Id { get; }
}
}