mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-19 09:49:41 +05:00
11 lines
439 B
C#
11 lines
439 B
C#
namespace VersionedSerialization.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = true)]
|
|
public class VersionConditionAttribute : Attribute
|
|
{
|
|
public string LessThan { get; set; } = "";
|
|
public string GreaterThan { get; set; } = "";
|
|
public string EqualTo { get; set; } = "";
|
|
public string IncludingTag { get; set; } = "";
|
|
public string ExcludingTag { get; set; } = "";
|
|
} |