18 lines
371 B
C#
18 lines
371 B
C#
using BS.Shared.DataContracts;
|
|
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|