26 lines
575 B
C#
26 lines
575 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto.OutComplaint
|
|
{
|
|
public class CreateOutComplaintRestoreDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? Content { get; set; }
|
|
|
|
public string? Creator { get; set; }
|
|
|
|
public int? CreatorEid { get; set; }
|
|
|
|
public string? Attachment { get; set; }
|
|
|
|
public OutComplaintBusinessStatus? BusinessStatus { get; set; }
|
|
|
|
public RestoreType? RestoreType { get; set; }
|
|
}
|
|
}
|