PIbd-23_Dyakonov_R_R_Softwa.../SoftwareInstallation/SoftwareInstallationDataModels/IId.cs

14 lines
226 B
C#
Raw Normal View History

2024-02-10 14:37:42 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SoftwareInstallationDataModels
{
public interface IId
{
int Id { get; }
}
}