Refactor Tizen.Applications
[platform/core/csapi/tizenfx.git] / Tizen.Applications / Tizen.Applications / ApplicationLaunchedEventArgs.cs
1 // Copyright 2016 by Samsung Electronics, Inc.,
2 //
3 // This software is the confidential and proprietary information
4 // of Samsung Electronics, Inc. ("Confidential Information"). You
5 // shall not disclose such Confidential Information and shall use
6 // it only in accordance with the terms of the license agreement
7 // you entered into with Samsung.
8
9 using System;
10
11 namespace Tizen.Applications
12 {
13     /// <summary>
14     /// Arguments for the event that is raised when the application is launched.
15     /// </summary>
16     public class ApplicationLaunchedEventArgs : EventArgs
17     {
18         /// <summary>
19         /// The information of the application.
20         /// </summary>
21         public ApplicationInfo ApplicationInfo { get; internal set; }        
22     }
23 }
24