a953cbf7fd
git-svn-id: https://keyhammer.ath.cx/svn/XPS/trunk@83 43c8e981-f90d-406c-a89a-24a2c4268d51
22 lines
400 B
C#
22 lines
400 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
using SteamWare;
|
|
|
|
public partial class mod_logStati : System.Web.UI.UserControl
|
|
{
|
|
public string idxObj
|
|
{
|
|
get
|
|
{
|
|
return txtSelObj.Text;
|
|
}
|
|
set
|
|
{
|
|
txtSelObj.Text = value;
|
|
}
|
|
}
|
|
}
|