Added the calendar!

This commit is contained in:
tidusjar 2019-03-30 00:09:43 +00:00
parent f748ea9db6
commit 9a267465a7
19 changed files with 326 additions and 11 deletions

View file

@ -0,0 +1,10 @@
using System;
namespace Ombi.Core.Models.Search.V2
{
public class CalendarViewModel
{
public string Title { get; set; }
public DateTime Start { get; set; }
}
}