MireaBackend/ApiDto/Responses/GroupResponse.cs
Polianin Nikita 84872a5d6d
Some checks failed
.NET Test Pipeline / build-and-test (pull_request) Failing after 1m34s
feat: add course information
2024-02-17 01:49:37 +03:00

27 lines
708 B
C#

namespace Mirea.Api.Dto.Responses;
/// <summary>
/// Represents basic information about a group.
/// </summary>
public class GroupResponse
{
/// <summary>
/// Gets or sets the unique identifier of the group.
/// </summary>
public int Id { get; set; }
/// <summary>
/// Gets or sets the name of the group.
/// </summary>
public required string Name { get; set; }
/// <summary>
/// Gets or sets the course number of the group.
/// </summary>
public int CourseNumber { get; set; }
/// <summary>
/// Gets or sets the unique identifier of the faculty to which the group belongs (optional).
/// </summary>
public int? FacultyId { get; set; }
}