Files
DPM/ThirtPartyKlassen/Converter/Html/IRtfHtmlCssStyle.cs
2020-10-21 11:01:51 +02:00

18 lines
434 B
C#

// name : IRtfHtmlCssStyle.cs
// project : RTF Framelet
// created : Jani Giannoudis - 2008.06.08
// language : c#
// environment: .NET 2.0
// copyright : (c) 2004-2013 by Jani Giannoudis, Switzerland
using System.Collections.Specialized;
namespace Itenso.Rtf.Converter.Html
{
public interface IRtfHtmlCssStyle
{
NameValueCollection Properties { get; }
string SelectorName { get; }
}
}