1
0
mirror of https://github.com/bitwarden/server synced 2026-01-09 03:53:42 +00:00
Files
server/src/Core/Models/Data/AttachmentResponseData.cs

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; }
}
}