CourseWork_KPO/CandidateReviewDataModels/IId.cs

8 lines
104 B
C#

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