using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AttachmentDemo.Model
{
public class UserContext
{
///
/// 用户名
///
public string LoginName { get; set; }
///
/// 密码
///
public string Password { get; set; }
}
}