Asset.cs 488 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Winsoft.GOV.XF.WebApi.WXCore.Models
  6. {
  7. public enum AssetType
  8. {
  9. Positon,
  10. Image
  11. }
  12. public class Asset
  13. {
  14. public Guid Id { get; set; }
  15. public Guid BundleId { get; set; }
  16. public string Describe { get; set; }
  17. public AssetType AssetType { get; set; }
  18. public string Data { get; set; }
  19. }
  20. }