- using Microsoft.Azure.Cosmos.Table;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.Service.Models.Core
- {
- [TableSpace(Name = "Core")]
- public class ContentVerify : TableEntity
- {
- public string Content { get; set; }
- public string AlgorithmType { get; set; }
- public string DigestCode { get; set; }
- }
- }
|