PIbd-31_Yakovlev.M.G._COP_16/ComponentProgramming/Models/IId.cs

14 lines
202 B
C#

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