feat(application): commands/queries + IChargeableCharConfigService (PRC-001)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
namespace SIGCM2.Application.Pricing.ChargeableChars;
|
||||
|
||||
/// <summary>
|
||||
/// PRC-001 — DTO for ChargeableCharConfig rows returned in list / get-by-id responses.
|
||||
/// </summary>
|
||||
public sealed record ChargeableCharConfigDto(
|
||||
long Id,
|
||||
long? MedioId,
|
||||
string Symbol,
|
||||
string Category,
|
||||
decimal PricePerUnit,
|
||||
DateOnly ValidFrom,
|
||||
DateOnly? ValidTo,
|
||||
bool IsActive);
|
||||
Reference in New Issue
Block a user