11 lines
209 B
C#
11 lines
209 B
C#
using System.Collections.Generic;
|
|
|
|
namespace RolemasterDb.App.Features;
|
|
|
|
public sealed record LookupRollResult(
|
|
int Total,
|
|
IReadOnlyList<int> Rolls)
|
|
{
|
|
public bool IsOpenEnded => Rolls.Count > 1;
|
|
}
|