ant-design-blazor/components/checkbox/ICheckboxGroup.cs
James Yeung 698ae84ab1
feat(module: checkbox): support generic value (#3715)
* feat(module: checkbox): support generic value

* fix tests

* fix test

* fix name

* fix tests

* fix tests
2024-04-02 22:15:48 +08:00

24 lines
614 B
C#

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Text;
namespace AntDesign.Internal
{
public interface ICheckboxGroup
{
internal bool Disabled { get; }
internal string NameAttributeValue { get; }
internal void AddItem(Checkbox checkbox);
internal void OnCheckboxChange(Checkbox checkbox);
internal void RemoveItem(Checkbox checkbox);
}
}