mirror of
https://github.com/bitwarden/server.git
synced 2025-04-23 22:15:10 -05:00
12 lines
253 B
C#
12 lines
253 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public class CipherPartialRequestModel
|
|
{
|
|
[StringLength(36)]
|
|
public string FolderId { get; set; }
|
|
public bool Favorite { get; set; }
|
|
}
|
|
}
|