Files
server/src/Api/Models/Request/LicenseRequestModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
179 B
C#
Raw Normal View History

2021-12-14 15:05:07 +00:00
using System.ComponentModel.DataAnnotations;
2021-12-14 15:05:07 +00:00
namespace Bit.Api.Models.Request;
2022-08-29 16:06:55 -04:00
2017-08-14 20:57:45 -04:00
public class LicenseRequestModel
{
[Required]
public IFormFile License { get; set; }
}