using System.Collections.Generic; namespace RolemasterDb.App.Features; public sealed record LookupRollResult( int Total, IReadOnlyList Rolls) { public bool IsOpenEnded => Rolls.Count > 1; }