This commit is contained in:
2023-11-27 06:56:03 +02:00
commit 343564fcc0
236 changed files with 101156 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace Domain
{
public class TaxBand
{
public int LowerLimit { get; set; }
public int? UpperLimit { get; set; }
public int TaxRate { get; set; }
}
}