Files
2023-02-06 16:15:16 +04:00

8 lines
109 B
C#

namespace SoftwareInstallationDataModels
{
public interface IId
{
int Id { get; }
}
}