1
0
mirror of https://github.com/bitwarden/server synced 2025-12-30 15:14:02 +00:00

create org with license file

This commit is contained in:
Kyle Spearrin
2017-08-14 20:57:45 -04:00
parent e4ec09fd0c
commit 5259b07889
9 changed files with 146 additions and 60 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Http;
using System.ComponentModel.DataAnnotations;
namespace Bit.Core.Models.Api
{
public class LicenseRequestModel
{
[Required]
public IFormFile License { get; set; }
}
}