mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00:00
11 lines
276 B
C#
11 lines
276 B
C#
namespace Bit.Api.Models.Request
|
|
{
|
|
public class AttachmentRequestModel
|
|
{
|
|
public string Key { get; set; }
|
|
public string FileName { get; set; }
|
|
public long FileSize { get; set; }
|
|
public bool AdminRequest { get; set; } = false;
|
|
}
|
|
}
|