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.
12 lines
355 B
C#
12 lines
355 B
C#
using System;
|
|
|
|
namespace LanLib.UpdateManager.Jobs
|
|
{
|
|
[AttributeUsage(AttributeTargets.Struct),
|
|
Obsolete("Use JobBatchSizeAttribute and ReadOnlyTransformAccessAttribute instead")]
|
|
public class UpdateJobOptionsAttribute : Attribute
|
|
{
|
|
public int BatchSize { get; set; }
|
|
public bool ReadOnlyTransforms { get; set; }
|
|
}
|
|
} |