8 lines
116 B
C#

namespace UniversityDataModels.HelperInterfaces
{
public interface IId
{
int Id { get; }
}
}