You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/IoT.Shared/Application/Models/EditApiParameterModel.cs

18 lines
534 B

using Microsoft.AspNetCore.Mvc.Rendering;
using System;
namespace Application.Models
{
public class EditApiParameterModel
{
public string Name { get; set; }
public string Description { get; set; }
public string Type { get; set; }
public bool Required { get; set; }
public string Maxinum { get; set; }
public string Minimum { get; set; }
public Guid ApiId { get; set; }
public string Value { get; set; }
public SelectList SelectList { get; set; }
}
}