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.
34 lines
706 B
34 lines
706 B
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Biskilog_Accounting.Shared.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; }
|
||
|
}
|