namespace Mirea.Api.Dto.Responses;
///
/// Represents basic information about a group.
///
public class GroupResponse
{
///
/// 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 unique identifier of the faculty to which the group belongs (optional).
///
public int? FacultyId { get; set; }
}