bykovme/nswallet

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

Summary

Maintainability
A
0 mins
Test Coverage
namespace NSWallet.Shared
{
    public class PDFItemModel
    {
        public string Name { get; set; }
        public string Image { get; set; }
        public ExportItemTypes ItemType { get; set; }
        public string Path { get; set; }
    }
}