summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ProtoBuf/ProtoAfterSerializationAttribute.cs
blob: f6860f7e7b369a4f7114840f9a9fa5f98f3889c0 (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 ProtoAfterSerializationAttribute : Attribute
	{
	}
}