15 lines
501 B
C#
15 lines
501 B
C#
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; }
|
|
}
|
|
} |