Class LaunderingOperation
Represents a laundering operation associated with a business property.
public class LaunderingOperation
- Inheritance
-
LaunderingOperation
- Inherited Members
- Extension Methods
Constructors
LaunderingOperation(BusinessWrapper, float, int, int)
Initializes a new instance of the LaunderingOperation class with the specified business, amount, minutes since started, and optional completion time.
public LaunderingOperation(BusinessWrapper business, float amount, int minutesSinceStarted, int completionTimeInMinutes = 1140)
Parameters
businessBusinessWrapperThe business associated with the laundering operation.
amountfloatThe amount of money to be laundered.
minutesSinceStartedintThe number of minutes since the laundering operation started.
completionTimeInMinutesintThe total time in minutes required to complete the laundering operation. Default is 1140 minutes.
LaunderingOperation(LaunderingOperation)
A wrapper class that acts as a bridge to interact with an inner laundering operation implementation from the Il2CppScheduleOne.Property namespace.
public LaunderingOperation(LaunderingOperation launderingOperation)
Parameters
launderingOperationLaunderingOperation
Properties
Amount
Gets or sets the amount of money to be laundered in this operation.
public float Amount { get; set; }
Property Value
Business
Gets or sets the business associated with the laundering operation.
public BusinessWrapper Business { get; set; }
Property Value
CompletionTimeInMinutes
Gets or sets the total time in minutes required to complete the laundering operation.
public int CompletionTimeInMinutes { get; set; }
Property Value
MinutesSinceStarted
Gets or sets the number of minutes that have passed since the laundering operation started.
public int MinutesSinceStarted { get; set; }