Repository URL to install this package:
|
Version:
1.1.0 ▾
|
using System;
using System.Diagnostics.CodeAnalysis;
using JetBrains.Annotations;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;
namespace Fluctio.FluctioSim.EditorCore.AccountManagement
{
[SuppressMessage("ReSharper", "ClassNeverInstantiated.Global")]
internal record LicenseInfo(
[property: JsonConverter(typeof(StringEnumConverter))] LicenseType Type,
DateTime? ExpirationDate,
[CanBeNull] string GiftedBy);
}