18 lines
313 B
C#
18 lines
313 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DAL.New_Models;
|
|
|
|
public partial class RegisterLog
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int? HostId { get; set; }
|
|
|
|
public string? HotelCode { get; set; }
|
|
|
|
public string? Mac { get; set; }
|
|
|
|
public string? CreateTime { get; set; }
|
|
}
|