system-praktyk-api/src/InternshipSystem.Core/Entity/Course.cs

8 lines
152 B
C#

namespace InternshipSystem.Core
{
public class Course
{
public long Id { get; set; }
public string Name { get; set; }
}
}