9 lines
208 B
C#
9 lines
208 B
C#
namespace Socialize.Infrastructure.Configuration;
|
|
|
|
public class WebsiteOptions
|
|
{
|
|
public const string SectionName = "Website";
|
|
|
|
public string FrontendBaseUrl { get; set; } = "http://localhost:5173";
|
|
}
|