This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/Models/SimilarProduct.cs
surtur 7db10ab6c0
All checks were successful
continuous-integration/drone/push Build is passing
add SimilarProduct model class
2021-02-16 16:29:19 +01:00

9 lines
135 B
C#

namespace pwt_0x01_ng.Models
{
public class SimilarProduct
{
public int id { get; set; }
public bool Selected { get; set; }
}
}