bitwarden-android/src/Core/Models/Response/AttachmentResponse.cs
2019-04-12 11:42:45 -04:00

12 lines
340 B
C#

namespace Bit.Core.Models.Response
{
public class AttachmentResponse
{
public string Id { get; set; }
public string Url { get; set; }
public string FileName { get; set; }
public string Key { get; set; }
public string Size { get; set; }
public string SizeName { get; set; }
}
}