15 lines
293 B
C#
15 lines
293 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Singer_Hexdive.Models.IOs
|
|
{
|
|
[NotMapped]
|
|
public class ApiRequest
|
|
{
|
|
public string FunctionName { get; set; }
|
|
|
|
public object Payload { get; set; }
|
|
|
|
public string Reference { get; set; }
|
|
}
|
|
}
|