10 lines
No EOL
306 B
C#
10 lines
No EOL
306 B
C#
using System;
|
|
|
|
namespace FullSerializer {
|
|
/// <summary>
|
|
/// The given property or field annotated with [JsonIgnore] will not be serialized.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public sealed class fsIgnoreAttribute : Attribute {
|
|
}
|
|
} |