mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00:00
10 lines
179 B
C#
10 lines
179 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request;
|
|
|
|
public class LicenseRequestModel
|
|
{
|
|
[Required]
|
|
public IFormFile License { get; set; }
|
|
}
|