OpenLiveWriter/utilities/BlogServer/XmlRpc/XmlRpcSerializableAttribute.cs

10 lines
187 B
C#
Raw Permalink Normal View History

2015-12-09 10:38:46 +00:00
using System;
namespace BlogServer.XmlRpc
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=false)]
public class XmlRpcSerializableAttribute : Attribute
{
}
}