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

Delta Between Two Patch Sets: Calendar.ASP.NET.MVC5/Models/CalendarViewModels.cs

Issue 194980043: Issue 6: Create an ASP.Net MVC Sample Base URL: https://google-api-dotnet-client.samples.googlecode.com/hg/
Left Patch Set: Correct base revision Created 9 years, 2 months ago
Right Patch Set: Addressed peleyal's comments Created 8 years, 11 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « Calendar.ASP.NET.MVC5/Models/CalendarEventGroup.cs ('k') | Calendar.ASP.NET.MVC5/Models/IdentityModels.cs » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 using System; 1 /*
2 Copyright 2015 Google Inc
3
4 Licensed under the Apache License, Version 2.0(the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15 */
16
2 using System.Collections.Generic; 17 using System.Collections.Generic;
3 using System.ComponentModel.DataAnnotations; 18 using System.ComponentModel.DataAnnotations;
4 using System.Linq;
5 using System.Web;
6 19
7 namespace Calendar.ASP.NET.MVC5.Models 20 namespace Calendar.ASP.NET.MVC5.Models
8 { 21 {
22 /// <summary>
23 /// A view model for the UpcomingEvents view.
24 /// </summary>
9 public class UpcomingEventsViewModel 25 public class UpcomingEventsViewModel
10 { 26 {
27 /// <summary>
28 /// Gets or sets a sequence of event groups to display.
29 /// </summary>
11 [Required] 30 [Required]
12 public IEnumerable<CalendarEventGroup> EventGroups { get; set; } 31 public IEnumerable<CalendarEventGroup> EventGroups { get; set; }
13 } 32 }
14 } 33 }
LEFTRIGHT

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