2024-01-07 02:00:00 +03:00
|
|
|
|
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; }
|
|
|
|
|
|
2024-01-26 07:39:47 +03:00
|
|
|
|
public List<Lesson>? Lessons { get; set; }
|
2024-01-07 02:00:00 +03:00
|
|
|
|
}
|