Primo sviluppo sincronizzazione e migliorie ui
This commit is contained in:
15
Template.Web/Core/Services/FormFactor.cs
Normal file
15
Template.Web/Core/Services/FormFactor.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using Template.Shared.Core.Interface;
|
||||
|
||||
namespace Template.Web.Core.Services;
|
||||
|
||||
public class FormFactor : IFormFactor
|
||||
{
|
||||
public string GetFormFactor()
|
||||
{
|
||||
return "Web";
|
||||
}
|
||||
public string GetPlatform()
|
||||
{
|
||||
return Environment.OSVersion.ToString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user