yavsc/YavscLib/IcommandLine.cs

20 lines
475 B
C#

9 years ago
namespace YavscLib.Billing
{
public interface IBillItem {
string Description { get; set; }
int Count { get; set; }
decimal UnitaryCost { get; set; }
string Currency { get; set; }
}
public interface ICommandLine : IBillItem
9 years ago
{
// FIXME too hard: no such generic name in any interface
9 years ago
long Id { get; set; }
// FIXME too far: perhaps no existing estimate
9 years ago
long EstimateId { get; set; }
}
9 years ago
}