1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00
Files
mobile/src/Core/Models/Data/EnvironmentUrlData.cs
Kyle Spearrin 3f94eee4d5 events url
2019-06-25 16:36:21 -04:00

14 lines
392 B
C#

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; }
public string Events { get; set; }
}
}