10 lines
187 B
C#
10 lines
187 B
C#
|
using System;
|
||
|
|
||
|
namespace BlogServer.XmlRpc
|
||
|
{
|
||
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=false)]
|
||
|
public class XmlRpcSerializableAttribute : Attribute
|
||
|
{
|
||
|
}
|
||
|
}
|