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

14 lines
216 B
C#

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