blob: 935bb6e4809ca3fd42df0941c234113a506ab9f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using System;
namespace XMainClient
{
internal class XAttrOtherFile : XAttrCommonFile
{
public override string FileName
{
get
{
return "ItemNew/OtherAttrPanel";
}
}
}
}
|