ICssRules.cs 194 B

12345678910111213
  1. using System.Collections.Generic;
  2. #pragma warning disable
  3. namespace ExCSS.Model
  4. {
  5. interface ISupportsRuleSets
  6. {
  7. List<RuleSet> RuleSets { get; }
  8. }
  9. }
  10. #pragma warning restore