git-svn-id: https://duplicati.googlecode.com/svn/trunk@277 59da171f-624f-0410-aa54-27559c288bec
36 lines
759 B
C#
36 lines
759 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace UpdateVersionNumber
|
|
{
|
|
public class DisplayItem
|
|
{
|
|
public DisplayItem(string file, Version version)
|
|
{
|
|
m_file = file;
|
|
m_version = version;
|
|
}
|
|
|
|
private string m_file;
|
|
|
|
public string File
|
|
{
|
|
get { return m_file; }
|
|
set { m_file = value; }
|
|
}
|
|
private Version m_version;
|
|
|
|
public Version Version
|
|
{
|
|
get { return m_version; }
|
|
set { m_version = value; }
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return m_file + " (" + m_version.ToString() + ")";
|
|
}
|
|
}
|
|
}
|