PIbd-32_Bulatova_K.R._COP_10/COP/ClientsDataModels/IId.cs
2024-10-29 09:22:02 +04:00

15 lines
218 B
C#

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