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; }
2020-07-07 21:03:20 -04:00
public string DbVersionTableName { get; set; } = "db_version";
public string TwitterUserTableName { get; set; } = "twitter_users";
2020-07-05 20:22:34 -04:00
public string FollowersTableName { get; set; } = "followers";
2020-07-07 21:03:20 -04:00
public string CachedTweetsTableName { get; set; } = "cached_tweets";
2020-07-05 20:22:34 -04:00
}
}