wip item images

This commit is contained in:
TheXamlGuy
2024-07-01 21:41:13 +01:00
parent 4c663fdbe4
commit ecd493d1a7
9 changed files with 51 additions and 58 deletions
+6 -2
View File
@@ -1,8 +1,12 @@
namespace Wallet;
using Toolkit.Foundation;
public class ItemHeaderConfiguration
namespace Wallet;
public record ItemHeaderConfiguration
{
public string? Name { get; set; }
public string? Category { get; set; }
public IImageDescriptor? ImageDescriptor { get; set; }
}