PIbd-21_Yaruskin_S.A_MotorP.../MotorPlant/MotorPlantDataModels/IId.cs

14 lines
216 B
C#
Raw Normal View History

2024-02-24 01:57:59 +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; }
}
}