namespace Mirea.Api.DataAccess.Application.Cqrs.Group.Queries.GetGroupDetails;
///
/// Represents groups.
///
public class GroupInfoVm
{
///
/// The unique identifier for the group.
///
public int Id { get; set; }
///
/// The name of the group.
///
public required string Name { get; set; }
///
/// The faculty name for the group.
///
public string? Faculty { get; set; }
///
/// The faculty identifier for the group.
///
public int? FacultyId { get; set; }
}