14 lines
280 B
C#
14 lines
280 B
C#
using System;
|
|
|
|
namespace ProtoBuf;
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
|
|
public class ProtoMapAttribute : Attribute
|
|
{
|
|
public DataFormat KeyFormat { get; set; }
|
|
|
|
public DataFormat ValueFormat { get; set; }
|
|
|
|
public bool DisableMap { get; set; }
|
|
}
|