PIbd-32_Bondarenko_M.S._COP_16/WinForm/DataModels/IId.cs
2023-11-01 21:10:48 +04:00

14 lines
206 B
C#

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