18 lines
448 B
C#
18 lines
448 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.BaseApp.FormScheme.Request
|
|
{
|
|
public class FormDataHistoryReq
|
|
{
|
|
public string table { get; set; }
|
|
public List<string> field { get; set; }
|
|
public string pkey { get; set; }
|
|
public string pkeyValue { get; set; }
|
|
public string schemeId { get; set; }
|
|
}
|
|
}
|