You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Core/Models/Search/V2/CalendarViewModel.cs

10 lines
191 B

using System;
namespace Ombi.Core.Models.Search.V2
{
public class CalendarViewModel
{
public string Title { get; set; }
public DateTime Start { get; set; }
}
}