13 lines
656 B
C#
13 lines
656 B
C#
namespace DocuMed.PWA.Models;
|
|
|
|
public static class Address
|
|
{
|
|
public const string BaseAddress = "http://localhost:32770/api";
|
|
public const string AuthController = $"{BaseAddress}/auth";
|
|
public const string CityController = $"{BaseAddress}/city";
|
|
public const string UniversityController = $"{BaseAddress}/university";
|
|
public const string SectionController = $"{BaseAddress}/section";
|
|
public const string UserController = $"{BaseAddress}/user";
|
|
public const string MedicalHistoryTemplateController = $"{BaseAddress}/medicalhistory/template";
|
|
public const string MedicalHistoryController = $"{BaseAddress}/medicalhistory";
|
|
} |