12 lines
274 B
C#
12 lines
274 B
C#
namespace EgwCoreLib.BlazorTest.Components
|
|
{
|
|
public class Appointment
|
|
{
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
|
|
public string Text { get; set; } = "";
|
|
public string Detail { get; set; } = "";
|
|
}
|
|
}
|