MVCPostall/Postall.Infra.MongoDB/Settings/MongoDbSetting.cs
2025-03-25 12:04:44 -03:00

21 lines
569 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; internal set; }
}
}