Updated documentation style in Win10Configuration.cs

This commit updates the comment style in the Win10Configuration.cs file to use XML comments, enhancing readability and providing better IntelliSense support in IDEs.

The changes include:

Class and property comments have been updated to use XML documentation syntax, providing a more detailed and consistent documentation style.
Here's an example of the changes:
```
        /// <summary>
        /// Gets or sets a value indicating whether OCR should be run automatically on every capture.
        /// </summary>
```
This change is purely cosmetic and does not affect the functionality of the code.
This commit is contained in:
BenjaminS 2023-05-31 03:09:52 +03:00 committed by GitHub
commit e9b32c0f0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,6 +29,9 @@ namespace Greenshot.Plugin.Win10
[IniSection("Win10", Description = "Greenshot Win10 Plugin configuration")]
public class Win10Configuration : IniSection
{
/// <summary>
/// Gets or sets a value indicating whether OCR should be run automatically on every capture.
/// </summary>
[IniProperty("AlwaysRunOCROnCapture", Description = "Determines if OCR is run automatically on every capture", DefaultValue = "False")]
public bool AlwaysRunOCROnCapture { get; set; }
}