mirror of
https://github.com/bitwarden/android.git
synced 2025-01-08 17:27:39 +03:00
13 lines
340 B
C#
13 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; }
|
|||
|
}
|
|||
|
}
|