mirror of
https://github.com/bitwarden/server.git
synced 2026-02-11 03:13:16 +08:00
12 lines
231 B
C#
12 lines
231 B
C#
using Microsoft.AspNetCore.Http;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Core.Models.Api
|
|
{
|
|
public class LicenseRequestModel
|
|
{
|
|
[Required]
|
|
public IFormFile License { get; set; }
|
|
}
|
|
}
|