18 lines
317 B
C#
18 lines
317 B
C#
using MauiApp2.Shared.Services;
|
|
|
|
namespace MauiApp2.Web.Services
|
|
{
|
|
public class FormFactor : IFormFactor
|
|
{
|
|
public string GetFormFactor()
|
|
{
|
|
return "Web";
|
|
}
|
|
|
|
public string GetPlatform()
|
|
{
|
|
return Environment.OSVersion.ToString();
|
|
}
|
|
}
|
|
}
|