11 lines
224 B
C#
11 lines
224 B
C#
|
using MongoDB.Bson.Serialization.Attributes;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
[BsonIgnoreExtraElements]
|
|||
|
public class DBConfig : AConfigComponent
|
|||
|
{
|
|||
|
public string ConnectionString { get; set; }
|
|||
|
public string DBName { get; set; }
|
|||
|
}
|
|||
|
}
|