16 lines
270 B
C#
16 lines
270 B
C#
using SteUp.Shared.Core.Interface;
|
|
|
|
namespace SteUp.Web.Services;
|
|
|
|
public class FormFactor : IFormFactor
|
|
{
|
|
public string GetFormFactor()
|
|
{
|
|
return "Web";
|
|
}
|
|
public string GetPlatform()
|
|
{
|
|
return Environment.OSVersion.ToString();
|
|
}
|
|
}
|