phronCare/Models/Models/PhSCustomerAddress.cs
Leandro Hernan Rojas 50014b6765
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m48s
Add Customers in API
2025-04-03 15:50:37 -03:00

38 lines
788 B
C#

using System;
using System.Collections.Generic;
namespace Models.Models;
public partial class PhSCustomerAddress
{
public int Id { get; set; }
public int? CustomersId { get; set; }
public string? BusinessName { get; set; }
public string? Streetaddress1 { get; set; }
public string? Streetaddress2 { get; set; }
public string? City { get; set; }
public string? Stateprovince { get; set; }
public string? Postalcode { get; set; }
public string? Country { get; set; }
public decimal? Latitude { get; set; }
public decimal? Longitude { get; set; }
public string? Phonenumber { get; set; }
public string? Email { get; set; }
public string? Notes { get; set; }
public virtual PhSCustomer? Customers { get; set; }
}