IIntegrationStyle.cs 136 B

1234567
  1. namespace InABox.Integration
  2. {
  3. public interface IIntegrationStyle : IIntegrationItem
  4. {
  5. double Cost { get; set; }
  6. }
  7. }