DBConfig.cs 227 B

1234567891011
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace Model
  3. {
  4. [BsonIgnoreExtraElements]
  5. public class DBConfig : AConfigComponent
  6. {
  7. public string ConnectionString { get; set; }
  8. public string DBName { get; set; }
  9. }
  10. }