2017-05-12 12:15:57 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace YavscLib.Billing
|
|
|
|
|
{
|
|
|
|
|
public interface IBillable {
|
|
|
|
|
string Description { get; set; }
|
|
|
|
|
List<IBillItem> GetBillItems();
|
2017-05-19 23:35:36 +02:00
|
|
|
long Id { get; set; }
|
2017-05-12 12:15:57 +02:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|