Created
November 3, 2020 12:40
-
-
Save shassaan/7d0b951f4a5a48c2525ae4aeffef22a4 to your computer and use it in GitHub Desktop.
Grade Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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