cloutier--bird.makeup/src/DataAccessLayers/BirdsiteLive.DAL.Postgres/Settings/PostgresSettings.cs

12 lines
439 B
C#
Raw Normal View History

2020-07-05 20:22:34 -04:00
namespace BirdsiteLive.DAL.Postgres.Settings
{
public class PostgresSettings
{
public string ConnString { get; set; }
public string DbVersionTableName { get; set; } = "db-version";
public string TwitterUserTableName { get; set; } = "twitter-users";
public string FollowersTableName { get; set; } = "followers";
public string CachedTweetsTableName { get; set; } = "cached-tweets";
}
}