mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00:00
11 lines
254 B
C#
11 lines
254 B
C#
namespace Bit.Core.Models.Table
|
|
{
|
|
public interface IStorable
|
|
{
|
|
long? Storage { get; set; }
|
|
short? MaxStorageGb { get; set; }
|
|
long StorageBytesRemaining();
|
|
long StorageBytesRemaining(short maxStorageGb);
|
|
}
|
|
}
|