yavsc/Yavsc.Abstract/Billing/IBillable.cs

12 lines
214 B
C#

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