MireaBackend/Domain/Schedule/TypeOfOccupation.cs
Polianin Nikita bd3a11486d
Some checks failed
.NET Test Pipeline / build-and-test (pull_request) Failing after 1m12s
refactor: correct new reference
2024-01-26 07:39:47 +03:00

12 lines
293 B
C#

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<Lesson>? Lessons { get; set; }
}