mirror of
https://github.com/bitwarden/server.git
synced 2025-07-01 16:12:49 -05:00
13 lines
298 B
C#
13 lines
298 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class AttachmentResponseData
|
|
{
|
|
public string Id { get; set; }
|
|
public CipherAttachment.MetaData Data { get; set; }
|
|
public Cipher Cipher { get; set; }
|
|
public string Url { get; set; }
|
|
}
|
|
}
|