using Azure; using Azure.Data.Tables; namespace Tango.Portal.Chat.Web.Models { public class AIInstruction : ITableEntity { public string PartitionKey { get; set; } = "Instructions"; public string RowKey { get; set; } = string.Empty; public DateTimeOffset? Timestamp { get; set; } public ETag ETag { get; set; } public string Instruction { get; set; } = string.Empty; public DateTime CreatedAt { get; set; } public string CreatedBy { get; set; } = string.Empty; } }