using System; using System.Collections.Generic; using System.Text; namespace YouZanSDKStandard.Api.Response { public class YouZanFullSkuUpdateResponse : YouZanResponse { public YouZanFullSkuUpdateDomain data { get; set; } } public class YouZanFullSkuUpdateDomain { public long item_id { get; set; } public string alias { get; set; } } }