1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-17 19:18:16 -05:00
bitwarden/src/Api/Models/Request/LicenseRequestModel.cs
2021-12-14 16:05:07 +01:00

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; }
}
}