You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
700 B
33 lines
700 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Cloud_Manager.Models.POSModels;
|
|
|
|
public partial class Tbldriver
|
|
{
|
|
public string DriverId { get; set; } = null!;
|
|
|
|
public string BranchId { get; set; } = null!;
|
|
|
|
public string? Firstname { get; set; }
|
|
|
|
public string? Surname { get; set; }
|
|
|
|
public string? Middlename { get; set; }
|
|
|
|
public DateOnly? DateOfBirth { get; set; }
|
|
|
|
public string? Address1 { get; set; }
|
|
|
|
public string? Address2 { get; set; }
|
|
|
|
public string? Telephone { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? City { get; set; }
|
|
|
|
public string? State { get; set; }
|
|
|
|
public string? Status { get; set; }
|
|
}
|
|
|