11 lines
207 B
C#
11 lines
207 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Yavsc.Billing
|
|
{
|
|
public interface IBillable {
|
|
string GetDescription ();
|
|
List<IBillItem> GetBillItems();
|
|
long Id { get; set; }
|
|
|
|
}
|
|
}
|