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

namespace ProtoBuf
{
	[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
	[ImmutableObject(true)]
	public sealed class ProtoBeforeDeserializationAttribute : Attribute
	{
	}
}