nikbel2004@outlook.com 1def502a7d Новая правка
2024-05-29 20:57:54 +04:00

13 lines
209 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankDataModels
{
public interface IId
{
int Id { get; }
}
}