mirror of
https://github.com/bitwarden/server.git
synced 2026-02-04 08:03:29 +08:00
10 lines
179 B
C#
10 lines
179 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request;
|
|
|
|
public class LicenseRequestModel
|
|
{
|
|
[Required]
|
|
public IFormFile License { get; set; }
|
|
}
|