using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Winsoft.GOV.XF.WebApi.WXCore.Models { public enum AssetType { Positon, Image } public class Asset { public Guid Id { get; set; } public Guid BundleId { get; set; } public string Describe { get; set; } public AssetType AssetType { get; set; } public string Data { get; set; } } }