9 lines
343 B
C#
9 lines
343 B
C#
public class FhirOptions
|
|
{
|
|
public const string Section = "Fhir";
|
|
|
|
public string BaseUrl { get; set; } = "http://localhost:5217/fhir";
|
|
public string PublisherName { get; set; } = "VigilCare Records";
|
|
public string PublisherUrl { get; set; } = "https://vigilcare.local";
|
|
public string ServerVersion { get; set; } = "1.0.0";
|
|
} |