DefaultDeviceId.cs 283 B

123456789101112131415
  1. using InABox.Core;
  2. namespace InABox.Avalonia.Platform;
  3. public class DefaultDeviceId : IDeviceId
  4. {
  5. public Logger? Logger { get; set; }
  6. public String GetDeviceId()
  7. {
  8. Logger?.Error("GetDeviceId() is not implemented on this platform");
  9. return "";
  10. }
  11. }