Files
server/src/Api/Models/Response/InstallationResponseModel.cs
2021-12-14 16:05:07 +01:00

21 lines
570 B
C#

using Bit.Core.Models.Api;
using Bit.Core.Models.Table;
namespace Bit.Api.Models.Response
{
public class InstallationResponseModel : ResponseModel
{
public InstallationResponseModel(Installation installation, bool withKey)
: base("installation")
{
Id = installation.Id.ToString();
Key = withKey ? installation.Key : null;
Enabled = installation.Enabled;
}
public string Id { get; set; }
public string Key { get; set; }
public bool Enabled { get; set; }
}
}