29 lines
788 B
C#
29 lines
788 B
C#
using OpenAuth.Repository.Domain;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenAuth.App.ServiceApp.Response
|
|
{
|
|
public class ChangeDetectionResp
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string FirstId { get; set; }
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
public string SecondId { get; set; }
|
|
public string SecondName { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
public long CreateId { get; set; }
|
|
public string AiAchievementId { get; set; }
|
|
public bool IsFinish { get; set; }
|
|
public List<LasaAiAchievementDetail> AiAchievementDetailList { get; set; }
|
|
}
|
|
}
|