7 lines
176 B
C#
7 lines
176 B
C#
using System;
|
|
|
|
namespace Syntriax.Engine.Core.Serialization;
|
|
|
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
|
|
public class SerializeAttribute : Attribute;
|