yavsc/Yavsc.Abstract/Billing/IBillItem.cs

14 lines
299 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 {
2017-06-08 17:09:06 +02:00
2017-05-12 12:15:57 +02:00
string Name { get; set; }
string Description { get; set; }
int Count { get; set; }
decimal UnitaryCost { get; set; }
string Currency { get; set; }
string Reference { get; }
}
}