8 lines
182 B
C#
8 lines
182 B
C#
namespace RolemasterDb.App.Components.Primitives;
|
|
|
|
public sealed record SegmentedTabItem(
|
|
string Value,
|
|
string Label,
|
|
string? Badge = null,
|
|
bool IsDisabled = false);
|