mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
10 lines
273 B
C#
10 lines
273 B
C#
|
|
namespace Data;
|
|||
|
|
|
|||
|
|
public class BlogApiJsonDirectAccessSetting
|
|||
|
|
{
|
|||
|
|
public string BlogPostsFolder { get; set; } = "";
|
|||
|
|
public string CategoriesFolder { get; set; } = "";
|
|||
|
|
public string TagsFolder { get; set; } = "";
|
|||
|
|
public string DataPath { get; set; } = "";
|
|||
|
|
}
|