19 lines
327 B
C#
19 lines
327 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Complaint.Domain.Dto
|
|
{
|
|
public class ComplaintEventDto
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public int? Fid { get; set; }
|
|
|
|
public DateTime? Ctime { get; set; }
|
|
}
|
|
}
|