mirror of
https://git.teknik.io/Teknikode/Teknik.git
synced 2023-08-02 14:16:22 +02:00
34 lines
856 B
C#
34 lines
856 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Teknik.Configuration
|
|||
|
{
|
|||
|
public class StorageConfig
|
|||
|
{
|
|||
|
public StorageType Type { get; set; }
|
|||
|
// File Extension for saved files
|
|||
|
public string FileExtension { get; set; }
|
|||
|
// Length of filename
|
|||
|
public int FileNameLength { get; set; }
|
|||
|
|
|||
|
// Local Storage Options
|
|||
|
public string LocalDirectory { get; set; }
|
|||
|
|
|||
|
// S3 Options
|
|||
|
public string Container { get; set; }
|
|||
|
|
|||
|
public StorageConfig(string container)
|
|||
|
{
|
|||
|
Type = StorageType.Local;
|
|||
|
Container = container;
|
|||
|
LocalDirectory = Directory.GetCurrentDirectory();
|
|||
|
FileExtension = "enc";
|
|||
|
FileNameLength = 10;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|