cs11dotnet7/vscode/Chapter10/CoursesAndStudents/Course.cs
2022-03-05 15:45:55 +00:00

15 lines
261 B
C#

using System.ComponentModel.DataAnnotations;
namespace Packt.Shared;
public class Course
{
public int CourseId { get; set; }
[Required]
[StringLength(60)]
public string? Title { get; set; }
public ICollection<Student>? Students { get; set; }
}