7 lines
168 B
C#
7 lines
168 B
C#
using System;
|
|
|
|
namespace Engine.Core.Serialization;
|
|
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
|
|
public class SerializeAllAttribute : Attribute;
|