20 lines
377 B
C#
20 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DAL.New_Models;
|
|
|
|
public partial class TbManualVisit
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? CompanyName { get; set; }
|
|
|
|
public string? PhoneNumber { get; set; }
|
|
|
|
public string? ValidateCode { get; set; }
|
|
|
|
public DateTime? CreatedDate { get; set; }
|
|
}
|