mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 10:32:09 +08:00
10 lines
238 B
C#
10 lines
238 B
C#
using Asp.Versioning.Builder;
|
|
|
|
namespace BuildingBlocks.Web;
|
|
|
|
public class EndpointConfig
|
|
{
|
|
public const string BaseApiPath = "api/v{version:apiVersion}";
|
|
public static ApiVersionSet VersionSet { get; private set; } = default!;
|
|
}
|