Polianin Nikita
bd3a11486d
Some checks failed
.NET Test Pipeline / build-and-test (pull_request) Failing after 1m12s
12 lines
293 B
C#
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; }
|
|
} |