mirror of
https://github.com/bitwarden/server.git
synced 2025-04-24 22:32:22 -05:00
10 lines
220 B
C#
10 lines
220 B
C#
namespace Bit.Core.Entities;
|
|
|
|
public interface IStorable
|
|
{
|
|
long? Storage { get; set; }
|
|
short? MaxStorageGb { get; set; }
|
|
long StorageBytesRemaining();
|
|
long StorageBytesRemaining(short maxStorageGb);
|
|
}
|