Files
ironlicensing-dotnet/IMachineIdentifier.cs
David Friedel 7d453f8f63 Initial commit: IronLicensing.Client SDK
Software licensing SDK for .NET MAUI applications with:
- License validation and activation
- Feature gating
- Trial support
- Offline validation with signature verification
- In-app purchase integration
2025-12-25 09:07:58 +00:00

9 lines
155 B
C#

namespace IronLicensing.Client;
public interface IMachineIdentifier
{
string GetMachineId();
string GetMachineName();
string GetPlatform();
}