yavsc/Yavsc.Abstract/Billing/IBillItem.cs

13 lines
290 B
C#
Raw Normal View History

2017-05-27 16:22:58 +02:00
namespace Yavsc.Billing
2017-05-12 12:15:57 +02:00
{
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; }
}
}