Files
DotNetAPITutorial/APITest2/Models/BookStoreDatabaseSettings.cs
2022-08-04 19:21:55 -05:00

10 lines
261 B
C#

using System;
namespace APITest2.Models;
public class BookStoreDatabaseSettings
{
public string ConnectionString { get; set; } = null!;
public string DatabaseName { get; set; } = null!;
public string BooksCollectionName { get; set; } = null!;
}