13 lines
247 B
C#
13 lines
247 B
C#
|
|
namespace BS.Shared.DataContracts
|
|||
|
|
{
|
|||
|
|
public interface IInvoiceRecipient
|
|||
|
|
{
|
|||
|
|
decimal? DefaultAmount { get; }
|
|||
|
|
|
|||
|
|
string InvoiceAddressString { get; }
|
|||
|
|
|
|||
|
|
string Name { get; }
|
|||
|
|
|
|||
|
|
long? Oid { get; }
|
|||
|
|
}
|
|||
|
|
}
|