IStyleDeclaration.cs 170 B

1234567891011
  1. #pragma warning disable
  2. namespace ExCSS.Model
  3. {
  4. interface ISupportsDeclarations
  5. {
  6. StyleDeclaration Declarations { get; }
  7. }
  8. }
  9. #pragma warning restore