mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00:00
12 lines
234 B
C#
12 lines
234 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Bit.Api.Models.Request
|
|
{
|
|
public class LicenseRequestModel
|
|
{
|
|
[Required]
|
|
public IFormFile License { get; set; }
|
|
}
|
|
}
|