cs11dotnet7/vscode/Chapter10/CoursesAndStudents/Course.cs

15 lines
261 B
C#
Raw Normal View History

2022-03-05 16:45:55 +01:00
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; }
}