2022-04-26 18:21:17 +03:00
|
|
|
|
using System;
|
2021-01-25 23:27:38 +03:00
|
|
|
|
using Bit.Core.Enums;
|
|
|
|
|
using Bit.Core.Models.Api;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Response
|
|
|
|
|
{
|
|
|
|
|
public class SendResponse
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string AccessId { get; set; }
|
|
|
|
|
public SendType Type { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Notes { get; set; }
|
|
|
|
|
public SendFileApi File { get; set; }
|
|
|
|
|
public SendTextApi Text { get; set; }
|
|
|
|
|
public string Key { get; set; }
|
|
|
|
|
public int? MaxAccessCount { get; set; }
|
2021-02-11 03:50:10 +03:00
|
|
|
|
public int AccessCount { get; set; }
|
|
|
|
|
public DateTime RevisionDate { get; set; }
|
|
|
|
|
public DateTime? ExpirationDate { get; set; }
|
|
|
|
|
public DateTime DeletionDate { get; set; }
|
2021-01-25 23:27:38 +03:00
|
|
|
|
public string Password { get; set; }
|
|
|
|
|
public bool Disabled { get; set; }
|
2021-03-29 19:01:42 +03:00
|
|
|
|
public bool? HideEmail { get; set; }
|
2021-01-25 23:27:38 +03:00
|
|
|
|
}
|
|
|
|
|
}
|