All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m24s
34 lines
678 B
C#
34 lines
678 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models.Models;
|
|
|
|
public partial class PhSInstitution
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public string Type { get; set; } = null!;
|
|
|
|
public string? Streetaddress { get; set; }
|
|
|
|
public string? City { get; set; }
|
|
|
|
public string? Province { get; set; }
|
|
|
|
public string? Phone { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
|
|
public string? Operatingroominfo { get; set; }
|
|
|
|
public DateTime Createdat { get; set; }
|
|
|
|
public bool Isactive { get; set; }
|
|
|
|
public double? Latitude { get; set; }
|
|
|
|
public double? Longitude { get; set; }
|
|
}
|