using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HL_FristAidPlatform_DTO
{
public class HospitalPhoneBookDTO
{
public long ID { get; set; }
///
///
///
public string HospitalGUID { get; set; }
///
///
///
public string OfficeName { get; set; }
///
///
///
public string TelephoneNumber { get; set; }
///
///
///
public long CreatorID { get; set; }
}
}