Files
egwcorelib/EgwCoreLib.Razor/Data/CalendarEvent.cs
T
Samuele Locatelli de7e742731 Rename part 2:
- aggiunta nuova path e rename
2023-02-03 08:29:22 +01:00

22 lines
686 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwCoreLib.Razor.Data
{
public class CalendarEvent
{
public int id { get; set; } = 0;
public DateTime Inizio { get; set; } = DateTime.Today.AddHours(8);
public DateTime Fine { get; set; } = DateTime.Today.AddHours(10);
public string CssClass { get; set; } = "";
public string Title { get; set; } = "";
public string Description { get; set; } = "";
public string Icon { get; set; } = "";
public string Type { get; set; } = "";
public string ToolTip { get; set; } = "";
}
}