blob: 52f566e004b6777bac4dd67580a640762fca9fbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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;
}
}
|