|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoviDok.Data.StorageProviders
|
|
{
|
|
public class MinioSettings {
|
|
public string HostName { get; set; }
|
|
public string AccessKey { get; set; }
|
|
public string SecretKey { get; set; }
|
|
|
|
}
|
|
}
|
|
|