7 lines
211 B
C#
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);
|
|
}
|