yavsc/Yavsc.Abstract/Billing/ICommandLine.cs

14 lines
280 B
C#

namespace Yavsc.Billing
8 years ago
{
public interface ICommandLine : IBillItem
8 years ago
{
// FIXME too hard: no such generic name in any interface
8 years ago
long Id { get; set; }
// FIXME too far: perhaps no existing estimate
8 years ago
long EstimateId { get; set; }
}
7 years ago
}