Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(566)

Side by Side Diff: Calendar.ASP.NET.MVC5/Models/CalendarEventGroup.cs

Issue 194980043: Issue 6: Create an ASP.Net MVC Sample Base URL: https://google-api-dotnet-client.samples.googlecode.com/hg/
Patch Set: Correct base revision Created 9 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel.DataAnnotations;
4 using System.Linq;
5 using System.Web;
6 using Google.Apis.Calendar.v3.Data;
7
8 namespace Calendar.ASP.NET.MVC5.Models
9 {
peleyal 2015/01/12 08:11:24 Please add comments to class and properties
jmcgrew 2015/02/20 02:53:17 Done.
10 public class CalendarEventGroup
11 {
12 [Required]
13 public string GroupTitle { get; set; }
14 [Required]
15 public IEnumerable<Event> Events { get; set; }
16 }
17 }
OLDNEW

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b