1
0
mirror of https://github.com/bitwarden/server synced 2025-12-26 05:03:18 +00:00
Files
server/src/Api/Models/Request/LicenseRequestModel.cs
2022-08-29 16:06:55 -04:00

10 lines
179 B
C#

using System.ComponentModel.DataAnnotations;
namespace Bit.Api.Models.Request;
public class LicenseRequestModel
{
[Required]
public IFormFile License { get; set; }
}