PIbd-23.Vrazhkin_S.A.RPP_ku.../AutoCenter/AutoCenterDataModels/IId.cs

14 lines
216 B
C#
Raw Permalink Normal View History

2024-05-01 19:29:21 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AutoCenterDataModels
{
public interface IId
{
int Id { get; }
}
}