Export amazon settlement report fix

This commit is contained in:
2020-02-06 21:20:15 +00:00
committed by GitHub
parent bed529e1c8
commit 7e50da21e7
52 changed files with 4827 additions and 819 deletions

View File

@@ -0,0 +1,47 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace bnhtrade.Core.Model.Account
{
public class InvoiceLineItem
{
public string ItemCode
{
get;
set;
}
public string Title
{
get;
set;
}
public string Description
{
get;
set;
}
public bool IsNewReviewRequired
{
get;
set;
}
public bool InvoiceLineEntryEnabled
{
get;
set;
}
public int DefaultAccountCode
{
get;
set;
}
public string DefaultTaxCode
{
get;
set;
}
}
}