OpenLiveWriter/utilities/BlogServer/XmlRpc/XmlRpcSerializableAttribute.cs

10 lines
187 B
C#

using System;
namespace BlogServer.XmlRpc
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=false)]
public class XmlRpcSerializableAttribute : Attribute
{
}
}