HRM_RabbitMQ_Consumer/JSONParser/Structure/Entity.cs
2024-12-05 09:14:37 +05:00

27 lines
618 B
C#

using Simple.OData.Client;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JSONParser.Structure
{
public class Entity
{
public string Type { get; set; }
public string Sid { get; set; }
public long? DirectumId { get; set; }
public virtual Task<long> Create(ODataClient client)
{
throw new NotImplementedException();
}
public virtual Task<long> Update(ODataClient client, long id)
{
throw new NotImplementedException();
}
}
}