11 lines
243 B
C#
11 lines
243 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ProtoBuf;
|
|
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
|
|
[ImmutableObject(true)]
|
|
public sealed class ProtoBeforeSerializationAttribute : Attribute
|
|
{
|
|
}
|