Skip to content

Instantly share code, notes, and snippets.

@gowtham758550
Last active August 9, 2022 04:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gowtham758550/a368c821d0b6dc9aa33f1ba41b2d224a to your computer and use it in GitHub Desktop.
Save gowtham758550/a368c821d0b6dc9aa33f1ba41b2d224a to your computer and use it in GitHub Desktop.
public partial class Enrollment
{
public int EnrollmentId { get; set; }
public decimal? Grade { get; set; }
public int CourseId { get; set; }
public int StudentId { get; set; }
public virtual Course Course { get; set; } = null!;
public virtual Student Student { get; set; } = null!;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment