yavsc/Yavsc.Abstract/Billing/IBillable.cs

12 lines
214 B
C#

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