yavsc/YavscLib/Billing/IBillable.cs

11 lines
187 B
C#

using System.Collections.Generic;
namespace YavscLib.Billing
{
public interface IBillable {
string Description { get; set; }
List<IBillItem> GetBillItems();
}
}