Files
BeWoPlaner/Shared/DataContracts/ClientPartials/IInvoiceRecipient.cs

13 lines
247 B
C#
Raw 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; }
}
}