mirror of
https://github.com/microsoft/autogen.git
synced 2026-04-20 03:02:16 -04:00
* big bang gitub workflows * add missing settings in local.settings.json * config refactor * fix devlead plan response * swap cosmos to table storage for metadata storage * unify config via options * azd-ify WIP * add qdrant bicep WIP * working azd provision setup * consolidate SK version in projects * replace localhost :) * add fqdn to options * httpclient fixes * add managed identity to the function and assign contrib role * qdrant endpoint setting * add container instances cleanup code + wait on termination to upload to Github * formatting fixes * add tables in bicep * local getting started WIP * add azure setup instructions * add the load-waf bits * docs WIP --------- Co-authored-by: Kosta Petan <Kosta.Petan@microsoft.com>
20 lines
491 B
C#
20 lines
491 B
C#
using Azure;
|
|
using Azure.Data.Tables;
|
|
|
|
public class IssueMetadata : ITableEntity
|
|
{
|
|
public long? Number { get; set; }
|
|
public int? CommentId { get; set; }
|
|
|
|
public string? InstanceId { get; set; }
|
|
|
|
public string? Id { get; set; }
|
|
|
|
public string? Org { get; set; }
|
|
public string? Repo { get; set; }
|
|
public string PartitionKey { get; set; }
|
|
public string RowKey { get; set; }
|
|
public DateTimeOffset? Timestamp { get; set; }
|
|
public ETag ETag { get; set; }
|
|
}
|