mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 23:24:36 +00:00
Misc
This commit is contained in:
parent
0060e76829
commit
aebf432fce
3 changed files with 3 additions and 3 deletions
|
@ -25,7 +25,7 @@ using JetBrains.Annotations;
|
|||
using Microsoft.OpenApi.Models;
|
||||
|
||||
namespace ArchiSteamFarm.IPC.Integration {
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property | AttributeTargets.Struct)]
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property)]
|
||||
[PublicAPI]
|
||||
public sealed class SwaggerItemsMinMaxAttribute : ValidationAttribute {
|
||||
public uint MaximumUint {
|
||||
|
|
|
@ -26,7 +26,7 @@ using Microsoft.OpenApi.Models;
|
|||
using SteamKit2;
|
||||
|
||||
namespace ArchiSteamFarm.IPC.Integration {
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property | AttributeTargets.Struct)]
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property)]
|
||||
[PublicAPI]
|
||||
public sealed class SwaggerSteamIdentifierAttribute : ValidationAttribute {
|
||||
public EAccountType AccountType { get; set; } = EAccountType.Individual;
|
||||
|
|
|
@ -28,7 +28,7 @@ using Microsoft.OpenApi.Extensions;
|
|||
using Microsoft.OpenApi.Models;
|
||||
|
||||
namespace ArchiSteamFarm.IPC.Integration {
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property | AttributeTargets.Struct)]
|
||||
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.Property)]
|
||||
[PublicAPI]
|
||||
public sealed class SwaggerValidValuesAttribute : ValidationAttribute {
|
||||
public int[]? ValidIntValues { get; set; }
|
||||
|
|
Loading…
Reference in a new issue