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

22 lines
516 B
C#
Raw Normal View History

2024-02-16 22:34:41 +03:00
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; }
}