Skip to content

Commit 95e0ccf

Browse files
Merge pull request #33 from raul-facturapi/chore/tax_model_type
chore(taxModel): add factor and ieps_mode to tax model
2 parents 5b521c7 + d241bb5 commit 95e0ccf

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [4.7.1] - 2025-16-04
9+
10+
### Added
11+
12+
- Type IepsMode for Tax model
13+
- Type Factor for Tax model
14+
815
## [4.7.0] = 2025-02-25
916

1017
### Added

Models/Tax.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@ public class Tax
1313
public string Type { get; set; }
1414
public decimal Rate { get; set; }
1515
public bool Withholding { get; set; }
16+
public string Factor {get; set;}
17+
public string IepsMode { get; set; }
1618
}
1719
}

facturapi-net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
API Keys creando una cuenta gratuita en https://www.facturapi.io</Summary>
1212
<PackageTags>factura factura-electronica cfdi facturapi mexico conekta</PackageTags>
1313
<Title>Facturapi</Title>
14-
<Version>4.7.0</Version>
14+
<Version>4.7.1</Version>
1515
<PackageVersion>$(Version)</PackageVersion>
1616
<Owners>Facturapi</Owners>
1717
<ApplicationIcon>facturapi.ico</ApplicationIcon>

0 commit comments

Comments
 (0)