yavsc/YavscLib/Billing/IBillItem.cs

13 lines
293 B
C#
Raw Normal View History

2017-05-12 12:15:57 +02:00
namespace YavscLib.Billing
{
public interface IBillItem {
string Name { get; set; }
string Description { get; set; }
int Count { get; set; }
decimal UnitaryCost { get; set; }
string Currency { get; set; }
string Reference { get; }
}
}