2024-09-20 13:23:52 +02:00
|
|
|
|
using BS.Shared;
|
|
|
|
|
|
using BS.Shared.DataContracts;
|
2024-08-26 14:31:05 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BeWo.ViewModel.ListViewModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public class ImageListVM : AbstractDCListMapperVM<ImageDC, ImageVM>
|
|
|
|
|
|
{
|
|
|
|
|
|
public ImageListVM(List<ImageDC> pDCs) : base(pDCs)
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|