Files
PIbd-31_Egorov_M.A._COP_34/Components/Models/IId.cs
2025-09-05 16:30:40 +04:00

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; }
}
}