23 lines
555 B
C#
23 lines
555 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
|
||
namespace FLGenerateLibrary
|
||
{
|
||
public class NamesResourcesDLL
|
||
{
|
||
/// <summary>
|
||
/// Тип DLL с названием
|
||
/// </summary>
|
||
public TypeResourcesDllName DllIdsName;
|
||
/// <summary>
|
||
/// Адрес до названия
|
||
/// </summary>
|
||
public long IDName;
|
||
/// <summary>
|
||
/// Описания
|
||
/// </summary>
|
||
public List<NamesResourcesDescDLL> Descriptions;
|
||
}
|
||
} |