18 lines
419 B
C#
18 lines
419 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace GZTW.Pecklist.Models
|
|
{
|
|
public partial class User
|
|
{
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Login { get; set; }
|
|
public string Password { get; set; }
|
|
public string Salt { get; set; }
|
|
public string DlKey { get; set; }
|
|
public long? DlKeyExp { get; set; }
|
|
|
|
}
|
|
}
|