Represents a basic model with success status and error messages.

interface MsModel {
    Errors: string[];
    IsSuccess: boolean;
}

Hierarchy (view full)

Properties

Properties

Errors: string[]

List of error messages if the operation was not successful.

IsSuccess: boolean

Indicates whether the operation was successful.