1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-24 04:04:34 +00:00

environment service

This commit is contained in:
Kyle Spearrin
2019-04-18 12:19:17 -04:00
parent b94485be75
commit 859788ca46
4 changed files with 142 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
namespace Bit.Core.Models.Data
{
public class EnvironmentUrlData
{
public string Base { get; set; }
public string Api { get; set; }
public string Identity { get; set; }
public string Icons { get; set; }
public string Notifications { get; set; }
public string WebVault { get; set; }
}
}