Update metodi x decodifica file in PROG

This commit is contained in:
Samuele Locatelli
2022-12-28 18:47:49 +01:00
parent cab86305cf
commit bf25cbd8b7
3 changed files with 74 additions and 5 deletions
+16 -1
View File
@@ -16,7 +16,12 @@ namespace MP.FileData
/// <summary>
/// Cerca da path relativo + nome file
/// </summary>
PathAndName
PathAndName,
/// <summary>
/// Ricerca di espliciti TAG nel file
/// </summary>
TagListed
}
public class SearchRules
@@ -78,6 +83,16 @@ namespace MP.FileData
/// </summary>
public bool ReplaceCR { get; set; } = true;
/// <summary>
/// Tag da collezionare, come elenco di stringhe
/// es: {"Customer", "Model"}
/// selezionerà
/// Customer=Steamware
/// MODEL=DEMO_SIMULATOR
/// </summary>
public List<string> Tag2Collect { get; set; } = new List<string>();
#endregion Public Properties
}
}