using System.Runtime.Serialization; using GitHub.Services.WebApi; namespace GitHub.Build.WebApi { /// /// Represents the target for the build process. /// [DataContract] public class DesignerProcessTarget : BaseSecuredObject { public DesignerProcessTarget() { } public DesignerProcessTarget(ISecuredObject securedObject) : base(securedObject) { } /// /// Agent specification for the build process. /// [DataMember(EmitDefaultValue = false)] public AgentSpecification AgentSpecification { get; set; } } }