1
0
Files
common/AMWD.Common.EntityFrameworkCore/Utilities/DatabaseProviderOptions.cs
2021-10-22 21:12:32 +02:00

14 lines
319 B
C#

namespace Microsoft.EntityFrameworkCore
{
/// <summary>
/// Options for the database provider.
/// </summary>
public class DatabaseProviderOptions
{
/// <summary>
/// Gets or sets the absolute path to the database directory.
/// </summary>
public string AbsoluteBasePath { get; set; }
}
}