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