Files
OurUmbraco/Marketplace/Models/VersionCompatibilityReportModel.cs
T

15 lines
501 B
C#
Raw Normal View History

using System.Collections.Generic;
using uProject.uVersion;
namespace uProject.Models
{
public class VersionCompatibilityReportModel
{
public IEnumerable<VersionCompatibility> VersionCompatibilities { get; set; }
public bool CurrentMemberIsLoggedIn { get; set; }
public bool CurrentMemberHasDownloaded { get; set; }
public int FileId { get; set; }
public int ProjectId { get; set; }
public IEnumerable<UVersion> AllVersions { get; set; }
}
}