using ProtoBuf; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Net; using System.Threading.Tasks; namespace TEAMModelOS.SDK.Module.AzureCosmosDBV3 { [ProtoContract] public class IdPk { [ProtoMember(1)] [Required(ErrorMessage = "{0} 必须填写")] public string id { get; set; } [ProtoMember(2)] public string pk { get; set; } /// /// 删除状态 NoContent(删除成功),NotFound(未找到,删除失败) /// [ProtoMember(3)] public HttpStatusCode StatusCode { get;set;} } }