generated from Integry/Template_NetMauiBlazorHybrid
16 lines
283 B
C#
16 lines
283 B
C#
using salesbook.Shared.Core.Interface;
|
|
|
|
namespace salesbook.Web.Core.Services;
|
|
|
|
public class FormFactor : IFormFactor
|
|
{
|
|
public string GetFormFactor()
|
|
{
|
|
return "Web";
|
|
}
|
|
public string GetPlatform()
|
|
{
|
|
return Environment.OSVersion.ToString();
|
|
}
|
|
}
|