Files
Media.JoshHeaps.Net/Media.JoshHeaps.Net/Models/MedicalDoctor.cs
T
2026-02-13 10:11:44 -07:00

15 lines
445 B
C#

namespace Media.JoshHeaps.Net.Models;
public class MedicalDoctor
{
public long Id { get; set; }
public long PersonId { get; set; }
public string Name { get; set; } = string.Empty;
public string? Specialty { get; set; }
public string? Phone { get; set; }
public string? Address { get; set; }
public string? Notes { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime UpdatedAt { get; set; }
}