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