mirror of
https://github.com/bitwarden/server
synced 2025-12-19 17:53:44 +00:00
11 lines
233 B
C#
11 lines
233 B
C#
using Bit.Core.Domains;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class CipherShare : Cipher
|
|
{
|
|
public bool ReadOnly { get; internal set; }
|
|
public Enums.ShareStatusType? Status { get; internal set; }
|
|
}
|
|
}
|