PIbd-23_Dolgov_D.A._Softwar.../SoftwareInstallation/AbstractSoftwareInstallationDataModels/IId.cs

14 lines
234 B
C#
Raw Normal View History

2023-03-11 22:53:15 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AbstractSoftwareInstallationDataModels
{
public interface IId
{
int Id { get; }
}
}