📄 ivcalendar.cs
字号:
namespace mCore
{
using System;
public interface IvCalendar
{
string Send();
string SendFile(string vCalendarFile);
string SendFileToQueue(string vCalendarFile);
string SendFileToQueue(string vCalendarFile, QueuePriority Priority);
string SendToQueue();
string SendToQueue(QueuePriority Priority);
string Description { get; set; }
string Destination { get; set; }
DateTime EndDateTime { get; set; }
string EventDuration { get; set; }
string Location { get; set; }
DateTime StartDateTime { get; set; }
string Summary { get; set; }
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -