32 lines
658 B
C#
32 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.Response
|
|
{
|
|
public class CaseStatDataPerTown
|
|
{
|
|
public CaseStatDataPerTown()
|
|
{
|
|
ProofreadCount = 0;
|
|
HandleCount = 0;
|
|
AuditCount = 0;
|
|
ArchiveCount = 0;
|
|
}
|
|
|
|
public string TownId { get; set; }
|
|
|
|
public string TownName { get; set; }
|
|
|
|
public int ProofreadCount { get; set; }
|
|
|
|
public int HandleCount { get; set; }
|
|
|
|
public int AuditCount { get; set; }
|
|
|
|
public int ArchiveCount { get; set; }
|
|
}
|
|
}
|