7 lines
203 B
C#
7 lines
203 B
C#
namespace Fengling.Member.Domain.Aggregates.PointsRuleModel;
|
|
|
|
public partial record PointsRuleConditionId : IGuidStronglyTypedId
|
|
{
|
|
public static PointsRuleConditionId New() => new(Guid.NewGuid());
|
|
}
|