mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-22 00:18:18 +05:00
this is done now to reduce the migration burden in the future when this is made into a nuget package (hopefully)
15 lines
552 B
C#
15 lines
552 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 LessThanOrEqual { get; set; } = "";
|
|
public string GreaterThanOrEqual { get; set; } = "";
|
|
|
|
public string IncludingTag { get; set; } = "";
|
|
public string ExcludingTag { get; set; } = "";
|
|
} |