mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 11:23:14 +08:00
11 lines
208 B
C#
11 lines
208 B
C#
|
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Models.Api
|
|||
|
|
{
|
|||
|
|
public class SendAccessRequestModel
|
|||
|
|
{
|
|||
|
|
[StringLength(300)]
|
|||
|
|
public string Password { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|