Skip to content

Instantly share code, notes, and snippets.

@shassaan
Created November 3, 2020 12:40
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 shassaan/7d0b951f4a5a48c2525ae4aeffef22a4 to your computer and use it in GitHub Desktop.
Save shassaan/7d0b951f4a5a48c2525ae4aeffef22a4 to your computer and use it in GitHub Desktop.
Grade Class
public class Grade{
public int GradeId { get; set; }
public string GradeName { get; set; }
public ICollection<Student> Students { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment