using System; using System.Runtime.Serialization; namespace Audit.Core { /// /// Target object data. /// public class AuditTarget { /// /// The type of the object tracked /// public string Type { get; set; } /// /// The value of the object tracked when the auditscope is created /// public object Old { get; set; } /// /// The value of the object tracked after the auditscope is saved /// public object New { get; set; } } }