mirror of
https://github.com/bitwarden/mobile
synced 2026-01-05 01:53:17 +00:00
13 lines
334 B
C#
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; }
|
|
}
|
|
}
|