bykovme/nswallet

View on GitHub
src/NSWallet/NSWallet.Shared/Models/FeatureRequestModel.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace NSWallet.Shared
{
    public class FeatureRequestModel
    {
        public string instance_id { get; set; }
        public string platform { get; set; }
        public string app_version { get; set; }
        public bool premium { get; set; }
        public string device { get; set; }
    }
}