| 1234567891011121314151617181920212223 |
- 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
- }
- [JsonObject(MemberSerialization.OptOut)]
- 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; }
- }
- }
|