Files
BeWoPlaner/Shared/DataContracts/ClientPartials/IInvoiceRecipient.cs
2016-06-27 01:45:38 +02:00

13 lines
247 B
C#

namespace BS.Shared.DataContracts
{
public interface IInvoiceRecipient
{
decimal? DefaultAmount { get; }
string InvoiceAddressString { get; }
string Name { get; }
long? Oid { get; }
}
}