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