AutoPackage/AutoPekage/SenderDao.cs

23 lines
418 B
C#
Raw Permalink Normal View History

2017-02-05 15:30:23 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AutoPekage
{
public class SenderDao
{
public int Id { get; set; }
public string Name { get; set; }
public string StmpServer { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string NickName { get; set; }
}
}