18 lines
402 B
C#
18 lines
402 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Traffic.Data.Models
|
|
{
|
|
public class UserLoginLog
|
|
{
|
|
public int Id { get; set; }
|
|
public int UserId { get; set; }
|
|
public string LoginIP { get; set; }
|
|
public DateTime LoginOn { get; set; }
|
|
public int Status { get; set; }
|
|
}
|
|
}
|