16 lines
296 B
C#
16 lines
296 B
C#
|
||
using Google.Apis.Calendar.v3.Data;
|
||
|
||
namespace Yavsc.ViewModels.Calendar
|
||
{
|
||
public class SetGoogleCalendarViewModel
|
||
{
|
||
public string GoogleCalendarId { get; set; }
|
||
|
||
public string ReturnUrl { get; set; }
|
||
|
||
public CalendarList Calendars { get; set; }
|
||
}
|
||
|
||
}
|