using System; namespace Dominion.NET_WPF.Models { public class AutoYield { public Type Event { get; set; } public Type Source { get; set; } public string SourceValue { get; set; } public AutoYieldDuration Duration { get; set; } public AutoYieldAction Action { get; set; } public Type Target { get; set; } } }