// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Tools.CrashReporter.CrashReportWebSite.Models
{
///
/// The View Model for email reports sign up response
/// This is used for the partial view used in the partial page update response.
///
public class EmailSubscriptionResponseModel
{
///
/// The email address to which the weekly report will be sent.
///
public string Email { get; set; }
///
/// The branch for which the report should be selected.
///
public string Branch { get; set; }
};
}