| 123456789101112131415161718192021222324252627282930 |
- //----------------------------------------------------------------
- //Module Name: OpenWindowArg
- //Purpose:
- //CopyRight: Muchinfo
- //History:
- //----------------------------------------------------------------
- //DateTime Author Description
- //----------------------------------------------------------------
- //2014-04-03 deng.yinping Create
- //----------------------------------------------------------------
- using Muchinfo.MTPClient.Data.Enums;
- namespace Muchinfo.MTPClient.Infrastructure.MessengerArgs
- {
- public class OpenWindowArg
- {
- public OpenWindowArg(string title, MenuCommandType type, string additionalInfo, bool createNew = false)
- {
- this.Title = title;
- this.Type = type;
- this.AdditionalInfo = additionalInfo;
- this.CreateNew = createNew;
- }
- public string Title { get; set; }
- public MenuCommandType Type { get; set; }
- public string AdditionalInfo { get; set; }
- public bool CreateNew { get; set; }
- }
- }
|