14 lines
290 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankDataModels
{
2024-05-29 19:43:47 +04:00
// Интерфейс, отвечающий за id у всех сущностей
public interface IId
{
int Id { get; }
}
}