Files
SIG-CM2.0/src/api/SIGCM2.Application/Pricing/ChargeableChars/ChargeableCharConfigDto.cs

15 lines
385 B
C#

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);