1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-05 01:53:17 +00:00
Files
mobile/src/App/Models/Api/Response/AttachmentResponse.cs
2018-11-19 22:24:10 -05:00

13 lines
334 B
C#

namespace Bit.App.Models.Api
{
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; }
}
}