yavsc/Yavsc.Abstract/Billing/IBillable.cs

11 lines
214 B
C#
Raw Normal View History

2017-05-12 12:15:57 +02:00
using System.Collections.Generic;
2017-05-27 16:22:58 +02:00
namespace Yavsc.Billing
2017-05-12 12:15:57 +02:00
{
public interface IBillable {
string Description { get; set; }
List<IBillItem> GetBillItems();
long Id { get; set; }
2017-05-12 12:15:57 +02:00
}
}