11 lines
211 B
C#
11 lines
211 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace VDownload.Core.EventArgsObjects
|
|||
|
|
{
|
|||
|
|
public class PlaylistSearchEventArgs : EventArgs
|
|||
|
|
{
|
|||
|
|
public string Phrase { get; set; }
|
|||
|
|
public int Count { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|