Files
app/windows/StreamPlayer.Desktop/Models/DeviceStatus.cs
2025-12-17 19:20:55 +00:00

7 lines
211 B
C#

namespace StreamPlayer.Desktop.Models;
public sealed record DeviceStatus(bool IsBlocked, string Reason, string TokenPart)
{
public static DeviceStatus Allowed() => new(false, string.Empty, string.Empty);
}