1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 09:13:15 +00:00

api models

This commit is contained in:
Kyle Spearrin
2019-04-16 11:07:32 -04:00
parent 567ebcd06e
commit 5d2f4e6ca4
11 changed files with 244 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using System;
namespace Bit.Core.Models.Request
{
public class AttachmentRequest
{
public string FileName { get; set; }
public string Key { get; set; }
}
}