yavsc/Yavsc.Abstract/Billing/IBillable.cs

12 lines
207 B
C#

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