mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
14 lines
392 B
C#
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; }
|
|
}
|
|
}
|