1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace PixiEditor.Models.DataHolders
- {
- [Serializable]
- public class Change
- {
- public object OldValue { get; set; }
- public object NewValue { get; set; }
- public string Description { get; set; }
- public string Property { get; set; }
- public Change(string property, object oldValue, object newValue, string description = "")
- {
- Property = property;
- OldValue = oldValue;
- Description = description;
- NewValue = newValue;
- }
- public Change()
- {
- }
- }
- }
|