1234567891011121314151617 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Module.LiteDB.Configuration
- {
- public class LiteDBOptions
- {
- public string ConnectionString { get; set; } = null;
- /// <summary>
- ///
- /// </summary>
- public LiteDBOptions()
- {
- }
- }
- }
|