yavsc/Yavsc/Interfaces/IBillingClause.cs

7 lines
148 B
C#
Raw Normal View History

2016-09-05 19:01:43 +02:00
namespace Yavsc.Models.Billing {
2016-08-30 23:04:13 +02:00
public interface IBillingClause { 
string Description {get; set;}
IBillingImpacter Impacter { get; }
}
2016-09-05 19:01:43 +02:00
}