1234567891011121314151617181920212223242526272829 |
- 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; }
- }
- }
|