11 lines
228 B
C#
11 lines
228 B
C#
namespace Fengling.Member.Application.Dtos;
|
|
|
|
public record PointsCalculationResultDto(
|
|
bool Success,
|
|
int Points,
|
|
DateTime ExpireAt,
|
|
Guid? AppliedRuleId,
|
|
string? Message,
|
|
List<string> MatchedDimensions
|
|
);
|