using System.Collections.Generic;
namespace Mirea.Api.DataAccess.Application.Cqrs.Group.Queries.GetGroupList;
///
/// Represents a view model containing multiple groups name.
///
public class GroupListVm
{
///
/// The list of groups.
///
public IList Groups { get; set; } = new List();
}