1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 20:53:16 +00:00
Files
server/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; }
}
}