1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HaBookCms.ServiceOptions.Options
- {
- public class AzureCosmosDBOptions
- {
- public string ConnectionString { get; set; } = null;
- public string ConnectionKey { get; set; } = null;
- public string Database { get; set; } = null;
- public AzureCosmosDBOptions()
- {
- //Azure Table Init
- }
- }
- }
|