- using Azure;
- using Azure.Data.Tables;
- using System.Collections;
- using System.Globalization;
- namespace HTEX.Complex.Service.AzureStorage
- {
- public class HTableEntity : ITableEntity
- {
- public string? PartitionKey { get; set; }
- public string? RowKey { get; set; }
- public DateTimeOffset? Timestamp { get; set; }
- public ETag ETag { get; set; }
- }
- }
|