mirror of
https://github.com/blueskythlikesclouds/SonicAudioTools.git
synced 2025-02-14 09:42:36 +01:00
14 lines
324 B
C#
14 lines
324 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SonicAudioLib.CriMw.Serialization
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property, AllowMultiple = false)]
|
|||
|
public class CriIgnoreAttribute : Attribute
|
|||
|
{
|
|||
|
}
|
|||
|
}
|