16 lines
426 B
C#
16 lines
426 B
C#
namespace UniVerse.Domain.Entities;
|
|
|
|
public class StudentProfile
|
|
{
|
|
public int Id { get; set; }
|
|
public int UserId { get; set; }
|
|
public string? StudentId { get; set; }
|
|
public string? GroupName { get; set; }
|
|
public int? EnrollmentYear { get; set; }
|
|
public string? Faculty { get; set; }
|
|
public string? Specialty { get; set; }
|
|
|
|
// Navigation properties
|
|
public User User { get; set; } = null!;
|
|
}
|