yavsc/YavscLib/Billing/IBillItem.cs

14 lines
293 B
C#

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; }
}
}