using System.Collections.Generic; namespace Mirea.Api.DataAccess.Domain.Schedule; public class TypeOfOccupation { public int Id { get; set; } public required string ShortName { get; set; } public string? FullName { get; set; } public List? Lessons { get; set; } }