using System; using System.Collections.Generic; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Model.Evaluation.Models.CosmosModels { [TableSpace(Name = "Evaluation")] public class BaseInfo { [PartitionKey] public string Type { get; set; } public string Code { get; set; } public string Name { get; set; } } }