10 lines
206 B
C#
10 lines
206 B
C#
using System.Collections.Generic;
|
|
|
|
namespace RolemasterDb.App.Features;
|
|
|
|
public sealed record CriticalTokenReviewItem(
|
|
string Scope,
|
|
string? ConditionText,
|
|
string Token,
|
|
string ReviewText);
|