ShortUrl.cs 349 B

123456789101112131415
  1. using Microsoft.Azure.Cosmos.Table;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using TEAMModelOS.SDK.Context.Attributes.Azure;
  6. using TEAMModelOS.SDK.DI;
  7. namespace TEAMModelOS.SDK.Models
  8. {
  9. [TableName(Name = "ShortUrl")]
  10. public class ShortUrl : TableEntity
  11. {
  12. public string Url { get; set; }
  13. }
  14. }