mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-04 08:09:27 +03:00
16 lines
318 B
C#
16 lines
318 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace DarkUI.Collections
|
|
{
|
|
public class ObservableListModified<T> : EventArgs
|
|
{
|
|
public IEnumerable<T> Items { get; private set; }
|
|
|
|
public ObservableListModified(IEnumerable<T> items)
|
|
{
|
|
Items = items;
|
|
}
|
|
}
|
|
}
|