mirror of
https://github.com/stokebob/bnhtrade.git
synced 2026-03-19 06:27:15 +00:00
48 lines
837 B
C#
48 lines
837 B
C#
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;
|
|
}
|
|
}
|
|
}
|