using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
namespace Steamworks.Data
{
///
/// Provides information about a DLC.
///
public struct DlcInformation
{
///
/// The of the DLC.
///
public AppId AppId { get; internal set; }
///
/// The name of the DLC.
///
public string Name { get; internal set; }
///
/// Whether or not the DLC is available.
///
public bool Available { get; internal set; }
}
}