Mark as obsolete

This commit is contained in:
Archangel
2025-10-31 23:17:15 +01:00
parent ac88c05e1e
commit 5354733c94
@@ -8,7 +8,10 @@ public abstract class AbstractProfileMigration : IProfileMigration
public virtual string MigrationName { get; }
public virtual IEnumerable<Type> PrerequisiteMigrations { get; } = [];
[Obsolete("Will be removed in the next version of SPT due to this property not being used.")]
public abstract string FromVersion { get; }
[Obsolete("Will be removed in the next version of SPT due to this property not being used.")]
public abstract string ToVersion { get; }
public abstract bool CanMigrate(JsonObject profile, IEnumerable<IProfileMigration> previouslyRanMigrations);