2017-08-14 12:08:57 -04:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Models.Api
|
|
|
|
|
|
{
|
2017-08-14 20:57:45 -04:00
|
|
|
|
public class LicenseRequestModel
|
2017-08-14 12:08:57 -04:00
|
|
|
|
{
|
|
|
|
|
|
[Required]
|
|
|
|
|
|
public IFormFile License { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|