Wonky.Client/Wonky.Entity/Views/BucketResultView.cs
Frede Hundewadt 4701783329 FIX: dlvAddress block closing when changing input field.
FIX: deleteDraft and deleteItem on ActivityCreage page did not trigger correct
2023-05-30 15:28:51 +02:00

21 lines
No EOL
635 B
C#

namespace Wonky.Entity.Views;
public class BucketResultView
{
public string Workplace { get; set; } = "";
public string WorkplaceDescription { get; set; } = "";
public string WorkplaceDocUrl { get; set; } = "";
public List<BucketVariantDocumentsResultView> Variants { get; set; } = new();
}
public class BucketVariantDocumentsResultView
{
public string ProductName { get; set; } = "";
public List<BucketVariantResultView> Documents { get; set; } = new();
}
public class BucketVariantResultView
{
public string DocumentId { get; set; } = "";
public string DocumentDescription { get; set; } = "";
}