mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08:00
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") { }
|
||
|
|
}
|
||
|
|
}
|