FileSearchWindows/FileSearch/Logic/Model/Engine/CriterionWeight.cs
Dvurechensky 2edf663d5b 1.0.5
2025-05-12 06:55:09 +03:00

35 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 06:51:53
* Version: 1.0.7
*/
namespace FileSearch.Logic.Model.Engine
{
public enum CriterionWeight
{
/// <summary>
/// Простая проверка переменной
/// </summary>
None,
/// <summary>
/// Простая проверка переменной с помощью некоторых продвинутых алгоритмов.
/// </summary>
Light,
/// <summary>
/// Проверка переменной, которая еще не разрешена.
/// </summary>
Medium,
/// <summary>
/// Проверка очень большой переменной, которая еще не разрешена.
/// </summary>
Heavy,
/// <summary>
/// Проверка очень большой переменной со сложными вычислениями, которые лучше не использовать.
/// </summary>
Extreme
}
}