using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// NewsfeedWithMeInfo Data Structure.
///
[Serializable]
public class NewsfeedWithMeInfo : AopObject
{
///
/// 登录ID
///
[JsonProperty("login_id")]
public string LoginId { get; set; }
///
/// 用户id
///
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}