1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2024-11-23 19:42:51 +01:00
Minecraft-Phantom-Panel/Utils/Phantom.Utils/Result/Ok.cs

4 lines
82 B
C#

namespace Phantom.Utils.Result;
public sealed record Ok<T>(T Value) : Result;