TableEntity.cs 388 B

123456789101112131415
  1. using Azure;
  2. using Azure.Data.Tables;
  3. using System.Collections;
  4. using System.Globalization;
  5. namespace HTEX.Complex.Service.AzureStorage
  6. {
  7. public class HTableEntity : ITableEntity
  8. {
  9. public string? PartitionKey { get; set; }
  10. public string? RowKey { get; set; }
  11. public DateTimeOffset? Timestamp { get; set; }
  12. public ETag ETag { get; set; }
  13. }
  14. }