Files
PURErat-crack-scode/decompiled/PanelPlugins/PureHelper.Client/ProtoBuf/ProtoPartialIgnoreAttribute.cs
T

19 lines
415 B
C#
Raw Normal View History

2026-08-27 10:56:38 -06:00
using System;
namespace ProtoBuf;
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = false)]
public sealed class ProtoPartialIgnoreAttribute : ProtoIgnoreAttribute
{
public string MemberName { get; }
public ProtoPartialIgnoreAttribute(string memberName)
{
if (string.IsNullOrEmpty(memberName))
{
throw new ArgumentNullException("memberName");
}
MemberName = memberName;
}
}