ISEbd-22_Zakharov_V.V._Moto.../MotorPlant/MotorPlantDataModels/IId.cs

14 lines
216 B
C#
Raw Permalink Normal View History

2023-03-01 14:46:25 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MotorPlantDataModels
{
public interface IId
{
int Id { get; }
}
}