PIbd-32_Bulatova_K.R._COP_10/COP/ClientsDataModels/IId.cs

15 lines
218 B
C#
Raw Normal View History

2024-10-29 09:22:02 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClientsDataModels
{
public interface IId
{
int Id { get; }
}
}