11 lines
187 B
C#
11 lines
187 B
C#
using System.Collections.Generic;
|
|
|
|
namespace YavscLib.Billing
|
|
{
|
|
public interface IBillable {
|
|
string Description { get; set; }
|
|
List<IBillItem> GetBillItems();
|
|
|
|
}
|
|
}
|