mirror of
https://github.com/bitwarden/android.git
synced 2025-01-07 16:57:35 +03:00
12 lines
340 B
C#
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; }
|
|
}
|
|
}
|