Asset.cs 534 B

1234567891011121314151617181920212223
  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. [JsonObject(MemberSerialization.OptOut)]
  13. public class Asset
  14. {
  15. public Guid Id { get; set; }
  16. public Guid BundleId { get; set; }
  17. public string Describe { get; set; }
  18. public AssetType AssetType { get; set; }
  19. public string Data { get; set; }
  20. }
  21. }