-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4e38762
commit 8879335
Showing
4 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
Submodule ArchiSteamFarm
updated
278 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
using System.Collections.Immutable; | ||
using ArchiSteamFarm.Json; | ||
using ArchiSteamFarm.Steam.Data; | ||
using Newtonsoft.Json; | ||
|
||
namespace ItemDispenser { | ||
|
||
public sealed class DispenseItem { | ||
public static readonly ImmutableHashSet<Steam.Asset.EType> EmptyTypes = ImmutableHashSet<Steam.Asset.EType>.Empty; | ||
public static readonly ImmutableHashSet<Asset.EType> EmptyTypes = ImmutableHashSet<Asset.EType>.Empty; | ||
|
||
[JsonProperty(Required = Required.Always)] | ||
public readonly uint AppID; | ||
[JsonProperty(Required = Required.Always)] | ||
public readonly ulong ContextID; | ||
[JsonProperty] | ||
public readonly ImmutableHashSet<Steam.Asset.EType> Types = EmptyTypes; | ||
public readonly ImmutableHashSet<Asset.EType> Types = EmptyTypes; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters