mirror of
https://github.com/bitwarden/server
synced 2025-12-19 17:53:44 +00:00
13 lines
272 B
C#
13 lines
272 B
C#
// FIXME: Update this file to be null safe and then delete the line below
|
|
#nullable disable
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Bit.Api.Models.Request;
|
|
|
|
public class LicenseRequestModel
|
|
{
|
|
[Required]
|
|
public IFormFile License { get; set; }
|
|
}
|