Add initial hcs database schema creation
This commit is contained in:
@ -1,5 +1,4 @@
|
||||
using Hcs.Broker.Api.Registry;
|
||||
using Hcs.Broker.Api.Type;
|
||||
using Hcs.Broker.Api.Type;
|
||||
|
||||
namespace Hcs.Broker.Api.Payload.Bills
|
||||
{
|
||||
|
||||
@ -1,6 +1,4 @@
|
||||
using Hcs.Broker.Api.Registry;
|
||||
|
||||
namespace Hcs.Broker.Api.Payload.DeviceMetering
|
||||
namespace Hcs.Broker.Api.Payload.DeviceMetering
|
||||
{
|
||||
// http://open-gkh.ru/DeviceMetering/exportMeteringDeviceHistoryRequest.html
|
||||
public class ExportMeteringDeviceHistoryPayload
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using Hcs.Broker.Api.Registry;
|
||||
using Hcs.Service.Async.HouseManagement;
|
||||
using Hcs.Service.Async.HouseManagement;
|
||||
|
||||
namespace Hcs.Broker.Api.Payload.HouseManagement
|
||||
{
|
||||
|
||||
@ -1,5 +1,4 @@
|
||||
using Hcs.Broker.Api.Registry;
|
||||
using Hcs.Service.Async.HouseManagement;
|
||||
using Hcs.Service.Async.HouseManagement;
|
||||
|
||||
namespace Hcs.Broker.Api.Payload.HouseManagement
|
||||
{
|
||||
|
||||
9
Hcs.Broker/Api/Payload/RegistryElement.cs
Normal file
9
Hcs.Broker/Api/Payload/RegistryElement.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Hcs.Broker.Api.Payload
|
||||
{
|
||||
public class RegistryElement(string code, string guid)
|
||||
{
|
||||
public string Code { get; } = code;
|
||||
|
||||
public string GUID { get; } = guid;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user