mirror of
https://github.com/jellyfin/jellyfin-sdk-csharp.git
synced 2024-11-26 23:20:43 +00:00
99e1ec336f
* initial kiota migration * remove old folder * move sample * update build scripts
15 lines
431 B
C#
15 lines
431 B
C#
using System.ComponentModel;
|
|
using Nuke.Common.Tooling;
|
|
|
|
[TypeConverter(typeof(TypeConverter<Configuration>))]
|
|
public class Configuration : Enumeration
|
|
{
|
|
public static Configuration Stable = new() { Value = nameof(Stable) };
|
|
public static Configuration Unstable = new() { Value = nameof(Unstable) };
|
|
|
|
public static implicit operator string(Configuration configuration)
|
|
{
|
|
return configuration.Value;
|
|
}
|
|
}
|