summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ProtoBuf/ProtoIgnoreAttribute.cs
blob: bc3f0c500ee09434e9004abe6d3168439c9e7d64 (plain)
1
2
3
4
5
6
7
8
9
using System;

namespace ProtoBuf
{
	[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
	public class ProtoIgnoreAttribute : Attribute
	{
	}
}