MireaBackend/Domain/Schedule/TypeOfOccupation.cs

12 lines
293 B
C#
Raw Normal View History

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
}