ISEbd_21_Kuklew_M.I._Softwa.../SoftwareInstallationDataModels/IId.cs

14 lines
226 B
C#
Raw Normal View History

2024-04-07 16:54:02 +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; }
}
}