13 lines
251 B
C#
13 lines
251 B
C#
using System;
|
|
|
|
namespace VideoEnc
|
|
{
|
|
public class MailService
|
|
{
|
|
public void OnVideoEncoded(object source, VideoEventArgs e)
|
|
{
|
|
Console.WriteLine("MailService: Sending an email..."+e.Video.Title);
|
|
}
|
|
}
|
|
}
|