MireaBackend/Domain/Schedule/Group.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

14 lines
318 B
C#

using System.Collections.Generic;
namespace Mirea.Api.DataAccess.Domain.Schedule;
public class Group
{
public int Id { get; set; }
public required string Name { get; set; }
public int? FacultyId { get; set; }
public Faculty? Faculty { get; set; }
public List<Lesson>? Lessons { get; set; }
}