Добавил домен

This commit is contained in:
2026-04-28 15:52:05 +03:00
parent fd94733873
commit 25d617639c
25 changed files with 349 additions and 0 deletions
@@ -0,0 +1,14 @@
namespace UniVerse.Domain.Entities;
public class TeacherProfile
{
public int Id { get; set; }
public int UserId { get; set; }
public string? Department { get; set; }
public string? Title { get; set; }
public string? Bio { get; set; }
public string? ModeusId { get; set; }
// Navigation properties
public User User { get; set; } = null!;
}