Added avalonia integration and remote proof of concept
This commit is contained in:
parent
775080a178
commit
4a0973b681
23 changed files with 2043 additions and 6 deletions
14
Catalog.Communication/CatalogCommunicationOptions.cs
Normal file
14
Catalog.Communication/CatalogCommunicationOptions.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
namespace Catalog.Communication;
|
||||
|
||||
public sealed class CatalogCommunicationOptions
|
||||
{
|
||||
public required Uri BaseUri { get; set; }
|
||||
|
||||
public string AdminPageBasePath { get; set; } = "admin/pg";
|
||||
|
||||
public TimeSpan RequestTimeout { get; set; } = TimeSpan.FromSeconds(30);
|
||||
|
||||
public int RetryCount { get; set; } = 2;
|
||||
|
||||
public TimeSpan RetryBaseDelay { get; set; } = TimeSpan.FromMilliseconds(250);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue