12 lines
No EOL
439 B
C#
12 lines
No EOL
439 B
C#
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";
|
|
}
|
|
} |