mirror of
https://github.com/bitwarden/server
synced 2025-12-20 02:03:46 +00:00
11 lines
201 B
C#
11 lines
201 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request
|
|
{
|
|
public class LicenseRequestModel
|
|
{
|
|
[Required]
|
|
public IFormFile License { get; set; }
|
|
}
|
|
}
|