mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-01-14 01:25:38 -05:00
12 lines
354 B
C#
12 lines
354 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace ChrisKaczor.HomeMonitor.Calendar.Service.Models.NationalDays;
|
|
|
|
[PublicAPI]
|
|
public class Entry
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Url { get; set; } = string.Empty;
|
|
public string Excerpt { get; set; } = string.Empty;
|
|
public string Type { get; set; } = string.Empty;
|
|
} |