UX tweaks, traits bug fix, adding member info

This commit is contained in:
2026-04-16 11:50:11 -07:00
parent 7b624b3238
commit 8ff071c69b
43 changed files with 3248 additions and 3816 deletions

View File

@@ -0,0 +1,12 @@
namespace MicCheck.Api.Features;
public record FeatureSegmentResponse(
int Id,
int FeatureId,
int SegmentId,
string SegmentName,
int EnvironmentId,
int Priority,
bool? Enabled,
string? Value
);