11 lines
295 B
C#
11 lines
295 B
C#
|
|
namespace SIGCM2.Application.Pricing.ChargeableChars.Create;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// PRC-001 — Response for CreateChargeableCharConfigCommand.
|
||
|
|
/// </summary>
|
||
|
|
public sealed record CreateChargeableCharConfigResponse(
|
||
|
|
long Id,
|
||
|
|
string Symbol,
|
||
|
|
decimal PricePerUnit,
|
||
|
|
DateOnly ValidFrom);
|