Files

13 lines
247 B
C#
Raw Permalink Normal View History

2016-06-27 01:45:38 +02:00
namespace BS.Shared.DataContracts
{
public interface IInvoiceRecipient
{
decimal? DefaultAmount { get; }
string InvoiceAddressString { get; }
string Name { get; }
long? Oid { get; }
}
}