You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
587 B
C#
27 lines
587 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace BookingWeb.Models
|
|
{
|
|
public class RespChangeLog : RespCommon
|
|
{
|
|
public List<ChangeLog> ChangeList { get; set; }
|
|
}
|
|
|
|
public class ChangeLog
|
|
{
|
|
public string Field { get; set; }
|
|
public string Title { get; set; }
|
|
public bool IsChanged
|
|
{
|
|
get
|
|
{
|
|
return SrcValue != DestValue;
|
|
}
|
|
}
|
|
public object SrcValue { get; set; }
|
|
public object DestValue { get; set; }
|
|
}
|
|
} |