17 lines
310 B
C#
17 lines
310 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace DataModels
|
|
{
|
|
public class Trades
|
|
{
|
|
int id;
|
|
string name;
|
|
|
|
public int Id { get => id; set => id = value; }
|
|
public string Name { get => name; set => name = value; }
|
|
}
|
|
}
|