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";
|
2023-04-28 12:14:47 -04:00
|
|
|
|
public string InstagramUserTableName { get; set; } = "instagram_users";
|
|
|
|
|
public string WorkersTableName { get; set; } = "workers";
|
|
|
|
|
public string CachedInstaPostsTableName { get; set; } = "cached_insta_posts";
|
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
|
|
|
|
}
|
|
|
|
|
}
|