1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-22 05:25:10 -05:00
bitwarden/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; }
}
}