mirror of
https://github.com/bitwarden/server
synced 2025-12-23 11:43:23 +00:00
11 lines
230 B
C#
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; }
|
|
}
|