removes unused chunk size from configuration

This commit is contained in:
Philipp Häfelfinger 2022-11-19 10:01:24 +01:00
parent 02624731c2
commit 3197ac24ea
2 changed files with 0 additions and 2 deletions

View File

@ -2,7 +2,6 @@ namespace Piwigo.Client;
public interface IPiwigoConfiguration
{
public int ChunkSize { get; }
public string BaseUri { get; }
public string UserName { get; }
public string Password { get; }

View File

@ -24,7 +24,6 @@ public class PiwigoConfiguration : IPiwigoConfiguration
Password = password;
}
public int ChunkSize { get; set; } = 512;
public string BaseUri { get; }
public string UserName { get; }
public string Password { get; }