Files
RolemasterDB/src/RolemasterDb.App/Components/Primitives/SegmentedTabItem.cs

8 lines
182 B
C#

namespace RolemasterDb.App.Components.Primitives;
public sealed record SegmentedTabItem(
string Value,
string Label,
string? Badge = null,
bool IsDisabled = false);