StableVersion4.3/HL_FristAidPlatform_DTO/Service/HospitalPhoneBookDTO.cs

33 lines
671 B
C#

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; }
/// <summary>
///
/// </summary>
public string HospitalGUID { get; set; }
/// <summary>
///
/// </summary>
public string OfficeName { get; set; }
/// <summary>
///
/// </summary>
public string TelephoneNumber { get; set; }
/// <summary>
///
/// </summary>
public long CreatorID { get; set; }
}
}