Files
NordigenDotNet/source/VMelnalksnis.NordigenDotNet/Accounts/AccountUsage.cs
T

15 lines
342 B
C#
Raw Normal View History

2022-12-18 23:02:08 +01:00
// Copyright 2022 Valters Melnalksnis
// Licensed under the Apache License 2.0.
// See LICENSE file in the project root for full license information.
using System.Text.Json.Serialization;
namespace VMelnalksnis.NordigenDotNet.Accounts;
/// <summary>All possible states of an account.</summary>
public enum AccountUsage
{
PRIV,
ORGA
}