MireaBackend/Application/Cqrs/Group/Queries/GetGroupList/GroupLookupDto.cs

22 lines
516 B
C#

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