public class Group
{
public int Id { get; set; }
public string Name { get; set; } = string.Empty; // Добавляем значение по умолчанию
}