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