16 lines
281 B
C#
16 lines
281 B
C#
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();
|
|
}
|
|
}
|