1
0
mirror of https://github.com/bitwarden/server synced 2025-12-23 11:43:23 +00:00
Files
server/src/Api/Models/Request/CipherPartialRequestModel.cs
2022-08-29 16:06:55 -04:00

11 lines
230 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bit.Api.Models.Request;
public class CipherPartialRequestModel
{
[StringLength(36)]
public string FolderId { get; set; }
public bool Favorite { get; set; }
}