forked from DavidMakarov/StudentEnrollment
8 lines
92 B
C#
8 lines
92 B
C#
|
namespace StudentEnrollmentDataModels
|
|||
|
{
|
|||
|
public interface IId
|
|||
|
{
|
|||
|
long Id { get; }
|
|||
|
}
|
|||
|
}
|