mirror of
https://github.com/bitwarden/server.git
synced 2025-04-17 19:18:16 -05:00
12 lines
234 B
C#
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; }
|
|
}
|
|
}
|