ProductDocument.cs 229 B

123456789
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. [UserTracking(typeof(Product))]
  5. public class ProductDocument : EntityDocument<ProductLink>, IManyToMany<Product, Document>, ILicense<ProductManagementLicense>
  6. {
  7. }
  8. }