using System.ComponentModel.DataAnnotations;
namespace Mirea.Api.Dto.Responses;
///
/// Represents detailed information about a group.
///
public class GroupDetailsResponse
{
///
/// Gets or sets the unique identifier of the group.
///
[Required]
public int Id { get; set; }
///
/// Gets or sets the name of the group.
///
[Required]
public required string Name { get; set; }
///
/// Gets or sets the course number of the group.
///
[Required]
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; }
}