bitwarden-android/src/Core/Models/Response/AttachmentResponse.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
340 B
C#
Raw Normal View History

2019-04-12 18:42:45 +03:00
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; }
}
}