BirdsiteLive/src/DataAccessLayers/BirdsiteLive.DAL.Postgres/Settings/PostgresSettings.cs

13 lines
520 B
C#
Raw Normal View History

2020-07-06 02:22:34 +02:00
namespace BirdsiteLive.DAL.Postgres.Settings
{
public class PostgresSettings
{
public string ConnString { get; set; }
2020-07-08 03:03:20 +02:00
public string DbVersionTableName { get; set; } = "db_version";
public string TwitterUserTableName { get; set; } = "twitter_users";
2020-07-06 02:22:34 +02:00
public string FollowersTableName { get; set; } = "followers";
2020-07-08 03:03:20 +02:00
public string CachedTweetsTableName { get; set; } = "cached_tweets";
2022-12-31 09:41:31 +01:00
public string SynchronizedTweetsTableName { get; set; } = "sync_tweets";
2020-07-06 02:22:34 +02:00
}
}