[성현모] EFCore 기능 추, dll 버전 추가

This commit is contained in:
SHM
2025-04-22 08:26:04 +09:00
parent aaf104a915
commit 0b69e0a8f7
13 changed files with 190 additions and 79 deletions

View File

@ -0,0 +1,25 @@
using DB.HubXDB;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HubX.Library.Http.Packet
{
public class Request_InsertUniqueKey
{
public string Identity { get; set; }
public string? Data1 { get; set; }
public string? Data2 { get; set; }
public string? Data3 { get; set; }
public string? Data4 { get; set; }
public string? Data5 { get; set; }
}
public class Response_InsertUniqueKy
{
}
}