mirror of
https://github.com/bitwarden/server.git
synced 2025-04-24 14:26:38 -05:00

* Remove Url from SendFileModel Url is now generated on the fly with limited lifetime. New model houses the download url generated * Create API endpoint for getting Send file download url * Generate limited-life Azure download urls * Lint fix
11 lines
285 B
C#
11 lines
285 B
C#
namespace Bit.Core.Models.Api.Response
|
|
{
|
|
public class SendFileDownloadDataResponseModel : ResponseModel
|
|
{
|
|
public string Id { get; set; }
|
|
public string Url { get; set; }
|
|
|
|
public SendFileDownloadDataResponseModel() : base("send-fileDownload") { }
|
|
}
|
|
}
|