Refactor code to .NET8

This commit is contained in:
Michał Zieliski
2024-06-18 22:24:04 +02:00
parent c54b9b0e00
commit 3485ab26b0
10 changed files with 21 additions and 21 deletions

View File

@@ -8,7 +8,7 @@ public class GoogleSheetsHelper
{
public SheetsService? Service { get; private set; }
private const string ApplicationName = "Diuna";
private static readonly string[] Scopes = { SheetsService.Scope.Spreadsheets };
private static readonly string[] Scopes = [SheetsService.Scope.Spreadsheets];
public GoogleSheetsHelper()
{
InitializeService();