Skip to content

Commit

Permalink
Fixed parsing problem of ClassRate property in voucherType.voucherclass
Browse files Browse the repository at this point in the history
  • Loading branch information
saivineeth100 committed Nov 14, 2023
1 parent d3f285b commit e676bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TallyConnector.Core/Models/Masters/VoucherType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public class VoucherClassLedger

[XmlElement(ElementName = "CLASSRATE")]
[Column(TypeName = "decimal(10,4)")]
public decimal ClassRate { get; set; }
public string? ClassRate { get; set; }

/// <summary>
/// Override using Item Default
Expand Down

0 comments on commit e676bb1

Please sign in to comment.