using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace DTO
|
{
|
public class TComplaintRespondentDTO
|
{
|
public int Id { get; set; }
|
public string ComplaintId { get; set; }
|
public string Respondent { get; set; }
|
public string Address { get; set; }
|
public string Postcode { get; set; }
|
public string Contacts { get; set; }
|
public string Phone { get; set; }
|
public int? Sort { get; set; }
|
}
|
}
|