mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
* Extract Import-Api endpoints into separate controller Moved ciphers/import and ciphers/import-organization into new ImportController Paths have been kept intact for now (no changes on clients needed) Moved request-models used for import into tools-subfolder * Update CODEOWNERS for team-tools-dev * Move HibpController (reports) to tools * Moving files related to Send * Moving files related to ReferenceEvent * Removed unneeded newline
15 lines
384 B
C#
15 lines
384 B
C#
using Bit.Core.Enums;
|
|
using Bit.Core.Models.Api;
|
|
|
|
namespace Bit.Api.Tools.Models.Response;
|
|
|
|
public class SendFileUploadDataResponseModel : ResponseModel
|
|
{
|
|
public SendFileUploadDataResponseModel() : base("send-fileUpload") { }
|
|
|
|
public string Url { get; set; }
|
|
public FileUploadType FileUploadType { get; set; }
|
|
public SendResponseModel SendResponse { get; set; }
|
|
|
|
}
|