Files
BeWoPlaner/BeWo/ViewModel/ListViewModel/NotizenEintragListVM.cs
Christian 40ebcc80fc cb
2018-10-08 11:57:16 +02:00

14 lines
304 B
C#

using System.Collections.Generic;
using BS.Shared.DataContracts;
namespace BeWo.ViewModel.ListViewModel
{
public class NotizenEintragListVM : AbstractDCListMapperVM<NotizenEintragDC, NotizenEintragVM>
{
public NotizenEintragListVM(IEnumerable<NotizenEintragDC> pList) : base(pList)
{
}
}
}