9 lines
160 B
C#
9 lines
160 B
C#
namespace MauiApp2.Shared.Services
|
|
{
|
|
public interface IFormFactor
|
|
{
|
|
public string GetFormFactor();
|
|
public string GetPlatform();
|
|
}
|
|
}
|