yavsc/src/Yavsc.Abstract/Billing/IBillItem.cs
Paul Schneider 40e8e08690 reorg
2026-02-28 21:17:54 +00:00

14 lines
299 B
C#

namespace Yavsc.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; }
}
}