using System; using System.Collections.Generic; namespace Biskilog_Cloud.Shared.Models; public partial class TblBranch { public string? BranchName { get; set; } public string BranchId { get; set; } = null!; public string? Address { get; set; } public string? City { get; set; } public string? StateOrProvince { get; set; } public string? BranchTelephone { get; set; } public DateTime LastModified { get; set; } }