You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
466 B
32 lines
466 B
using System; |
|
using System.Collections.Generic; |
|
using System.Linq; |
|
using System.Text; |
|
using System.Threading.Tasks; |
|
|
|
namespace XmlTest |
|
{ |
|
public class OperList |
|
{ |
|
public List<Opers> Items { get; set; } |
|
} |
|
|
|
public class Opers |
|
{ |
|
private int oIndex; |
|
|
|
public int OIndex |
|
{ |
|
get { return oIndex; } |
|
set { oIndex = value; } |
|
} |
|
|
|
private int oName; |
|
|
|
public int OName |
|
{ |
|
get { return oName; } |
|
set { oName = value; } |
|
} |
|
} |
|
}
|
|
|