package pwc.taxtech.atms.dto;

public class TaxRuleSettingOperation {
    private String action;
    private TaxRuleSettingDto taxRuleSetting;

    public String getAction() {
        return this.action;
    }

    public void setAction(String action) {
        this.action = action;
    }

    public TaxRuleSettingDto getTaxRuleSetting() {
        return taxRuleSetting;
    }

    public void setTaxRuleSetting(TaxRuleSettingDto taxPayerReportRule) {
        this.taxRuleSetting = taxPayerReportRule;
    }
}