647b2b0f37
- Added `AnchorDataProvider`, `AnchorCollectionDataProvider`, `ContentsDataProvider`, `ContentsArrayDataProvider`, `DropDownDataProvider`, `ListContentDataProvider`, and `ParagraphedContentDataProvider` for enhanced data extraction flexibility. - Updated project version to 2.5.0.
12 lines
319 B
C#
12 lines
319 B
C#
using System.Collections;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using aeqw89.DataKeys;
|
|
using aeqw89.PersistentData;
|
|
using Beam.Abstractions;
|
|
|
|
namespace Beam.Dynamic;
|
|
|
|
public class BindingsCollection(Table<IDataProvider>? providers = null) {
|
|
public Table<IDataProvider> Providers { get; } = providers ?? [];
|
|
|
|
} |