mirror of
https://github.com/bitwarden/mobile
synced 2025-12-15 07:43:37 +00:00
10 lines
131 B
C#
10 lines
131 B
C#
namespace Bit.Core.Enums
|
|
{
|
|
public enum StorageLocation
|
|
{
|
|
Both = 0,
|
|
Disk = 1,
|
|
Memory = 2
|
|
}
|
|
}
|