Skip to content
Snippets Groups Projects
Student.cs 588 B
Newer Older
using System;
using System.Collections.Generic;
using System.Text;

namespace Tsi1.DataLayer.Entities
{
    public class Student
    {
        public Student()
        {
            StudentCourses = new HashSet<StudentCourse>();
        }

        public int Id { get; set; }
esantangelo's avatar
esantangelo committed
        
        public string IdentityCard { get; set; }
esantangelo's avatar
esantangelo committed
        
        public int Age { get; set; }

esantangelo's avatar
esantangelo committed
        public int TenantId { get; set; }

        public Tenant Tenant { get; set; }
        public User User { get; set; }
        public ICollection<StudentCourse> StudentCourses { get; set; }
    }
}