mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00:00
* Adding SecretVersion table to server * making the names singular not plural for new table * removing migration * fixing migration * Adding indexes for serviceacct and orguserId * indexes for sqllite * fixing migrations * adding indexes to secretVeriosn.sql * tests * removing tests * adding GO * api repository and controller additions for SecretVersion table, as well as tests * test fix sqllite * improvements * removing comments * making files nullable safe * Justin Baurs suggested changes * claude suggestions * Claude fixes * test fixes
10 lines
204 B
C#
10 lines
204 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.SecretsManager.Models.Request;
|
|
|
|
public class RestoreSecretVersionRequestModel
|
|
{
|
|
[Required]
|
|
public Guid VersionId { get; set; }
|
|
}
|