mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
12 lines
215 B
C#
12 lines
215 B
C#
using System;
|
|
|
|
namespace RadzenBlazorDemos
|
|
{
|
|
public class Appointment
|
|
{
|
|
public DateTime Start { get; set; }
|
|
public DateTime End { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
}
|
|
} |