7 lines
176 B
C#
7 lines
176 B
C#
namespace CodeReviewApp.ConfiguringManager;
|
|
|
|
public class DatabaseSettings
|
|
{
|
|
public string ConnectionString { get; set; } = default!;
|
|
public int TimeOut { get; set; }
|
|
} |