123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ropin.Inspection.Common.Helper
- {
- public class MinioSettingsOptions
- {
- public string Urls { get; set; }
- public string BucketName { get; set; }
- public string Endpoint { get; set; }
- public string AccessKey { get; set; }
- public string SecretKey { get; set; }
- public bool UseSSL { get; set; }
- }
- }
|