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