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