mirror of
https://github.com/achiez/NebulaAuth-Steam-Desktop-Authenticator-by-Achies.git
synced 2026-07-25 06:14:31 +00:00
16 lines
556 B
C#
16 lines
556 B
C#
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using SteamLib.SteamMobile.Confirmations;
|
|
|
|
namespace NebulaAuth.Model.Entities;
|
|
|
|
public class MarketMultiConfirmation : Confirmation
|
|
{
|
|
public ObservableCollection<MarketConfirmation> Confirmations { get; }
|
|
public MarketMultiConfirmation(IEnumerable<MarketConfirmation> confirmations) : base(0, 0, 0, 0, ConfirmationType.Unknown, "")
|
|
{
|
|
Confirmations = new(confirmations);
|
|
Time = Confirmations.FirstOrDefault()?.Time ?? default;
|
|
}
|
|
} |