yavsc/YavscLib/ICommandLine.cs

13 lines
282 B
C#

9 years ago
namespace YavscLib.Billing
{
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
}