generated from ricardo/MVCLogin
21 lines
560 B
C#
21 lines
560 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Postall.Infra.MongoDB.Settings
|
|
{
|
|
/// <summary>
|
|
/// Configuração do MongoDB
|
|
/// </summary>
|
|
public class MongoDbSettings
|
|
{
|
|
public string ConnectionString { get; set; }
|
|
public string DatabaseName { get; set; }
|
|
public string ChannelsCollectionName { get; set; }
|
|
public string VideosCollectionName { get; set; }
|
|
public string UserSocialCollectionName { get; set; }
|
|
}
|
|
}
|