mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2026-04-07 15:23:56 +00:00
9 lines
273 B
C#
9 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; } = "";
|
|
}
|