yavsc/Yavsc.Abstract/Interfaces/Workflow/IBillingClause.cs

10 lines
187 B
C#

using Yavsc.Billing;
7 years ago
8 years ago
namespace Yavsc.Models.Billing {
7 years ago
public interface IBillingClause { 
string Description {get; set;}
IBillingImpacter Impacter { get; }
}
8 years ago
7 years ago
}