// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.Ecom
{
///
/// An enumeration of the different ownership statuses.
///
public enum OwnershipStatus : int
{
///
/// The catalog item is not owned by the local user
///
NotOwned = 0,
///
/// The catalog item is owned by the local user
///
Owned = 1
}
}