ComplianceServer/code/Hg.Core.Domain/Dto/Live/AuditNoticeDto.cs

15 lines
322 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Domain.Dto.Live
{
public class AuditNoticeDto
{
public string Title { get; set; }
public int Count { get; set; }
public string Url { get; set; }
}
}